Skip to content

Instantly share code, notes, and snippets.

@weyderfs
Last active July 7, 2022 21:00
Show Gist options
  • Save weyderfs/bee836a63c2e0d256fda7eb2ee0ee314 to your computer and use it in GitHub Desktop.
Save weyderfs/bee836a63c2e0d256fda7eb2ee0ee314 to your computer and use it in GitHub Desktop.
Delete AWS Cloudformation Stacks
#!/bin/bash
for i in $(aws cloudformation list-stacks |jq -r '.StackSummaries[] | {StackName} | join(" ")')
do echo aws cloudformation delete-stack --stack-name $i #remove echo to delete
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment