AWS/CDK

[AWS CDK] Clean up CDK Stack

brightlightkim 2022. 4. 6. 04:14

To avoid unexpected charges to your account, make sure you clean up your CDK stack.

You can either delete the stack through the AWS CloudFormation console or use cdk destroy:

cdk destroy

You’ll be asked:

Are you sure you want to delete: CdkWorkshopStack (y/n)?

Hit “y” and you’ll see your stack being destroyed.