Skip to content

Instantly share code, notes, and snippets.

@whyvez
Last active August 29, 2018 19:12
Show Gist options
  • Save whyvez/1bce75f1d08e4a446a593f9c2e4647ba to your computer and use it in GitHub Desktop.
Save whyvez/1bce75f1d08e4a446a593f9c2e4647ba to your computer and use it in GitHub Desktop.
Deletes all AWS CloudFormation stacks - USE WITH CAUTION!
#!/bin/bash
aws cloudformation list-stacks | jq -r '.[][].StackName' | while read -r stack_name; do
aws cloudformation delete-stack --stack-name "${stack_name}"
echo "deleted stack ${stack_name}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment