Skip to content

Instantly share code, notes, and snippets.

@khornberg
Created January 22, 2019 20:15
Show Gist options
  • Save khornberg/b607242c33ac35fc192070276f50c94b to your computer and use it in GitHub Desktop.
Save khornberg/b607242c33ac35fc192070276f50c94b to your computer and use it in GitHub Desktop.
delete cloudformation stack on a filter
aws cloudformation list-stacks --stack-status-filter REVIEW_IN_PROGRESS | jq -c '.StackSummaries[] | .StackName' | xargs -L 1 aws cloudformation delete-stack --stack-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment