-
Notifications
You must be signed in to change notification settings - Fork 4.5k
(aws-cdk): Add "quickly retry stack operation" feature to CDK #16289
Description
New for AWS CloudFormation – Quickly Retry Stack Operations from the Point of Failure
Today, CloudFormation allows us to disable rollback so that we can quickly retry stack operation from point the point of failure. This feature reduces the time required to test CloudFormation template in development environment. I really need this feature to CDK as well.
Use Case
For example, let's think the case we deploy Aurora cluster and other small resources. And assuming the small resources depend on the cluster. If I deploy the resources at the same time by one template, CloudFormation creates the cluster first and then create the small stuff. If the deployment contains a bug about small stuff, CloudFormation would rollback all creation including Aurora cluster even the creation of the cluster takes 10 ~ 20 minutes. For the development environment, especially, we would like to keep the cluster and re-create the small stuff after fixing the bug.
Proposed Solution
Add an option that supports "Quickly Retry Stack Operations from the Point of Failure".
Other
- 👋 I may be able to implement this feature request
-
⚠️ This feature might incur a breaking change
This is a 🚀 Feature Request