How can I disable rollback on failure in my template?

Viewed 11633

I'm working on a CloudFormation template, and an update is failing to apply. I'd like to set the stack option Rollback on Failure to "No" in order to keep the resources around for debugging. How can I disable "rollback on failure" in my CloudFormation template?

2 Answers

AWS introduced a CloudFormation feature where the stack creation stops at the point of failure and we should be able to debug the issue from there on. Here is the reference to the AWS blog for the same.

Related