Skip to content
This repository has been archived by the owner on Jul 11, 2020. It is now read-only.

Latest commit

 

History

History
11 lines (6 loc) · 492 Bytes

26-destroy-an-aws-cdk-stack.md

File metadata and controls

11 lines (6 loc) · 492 Bytes

Destroy an AWS CDK stack

📹 Video

If at some point you want to delete your app (along with all of its resources), you just need to run:

  • cdk destroy.

The only thing that won't get deleted is the s3 LogoBucket which you can delete manually.

👍 And if you want to redeploy the app again in the future (assuming you didn't delete the code on your computer!), just run cdk deploy and your app will be live again.