How do I disable failback rollbacks in my template?

I am working on a CloudFormation template and the update is not being applied. I would like to set the Rollback on Failover stack option to "No" in order to maintain debugging resources. How do I disable rollback in my CloudFormation template?

+3


source to share


1 answer


I think this option is only available when creating a stack. The description says Specifies whether the stack should be rolled back if stack creation fails.

.

If you look at the AWS CLI, there aws cloudformation create-stack

is a flag available for --disable-rollback

, but no aws cloudformation update-stack

such option exists.

See also links:



Hope it helps.

+7


source







All Articles