Skip to content

Instantly share code, notes, and snippets.

@amosshapira
Last active October 19, 2016 04:43
Show Gist options
  • Save amosshapira/261e0c4c615eb9665f81c5269b0c1252 to your computer and use it in GitHub Desktop.
Save amosshapira/261e0c4c615eb9665f81c5269b0c1252 to your computer and use it in GitHub Desktop.
List existing CloudFormation stacks
#!/bin/sh
# list cloudfomation stacks, filter out deleted stacks,
# print only stack names and status, align in nice columns
aws cloudformation list-stacks \
--query 'StackSummaries[?StackStatus!=`DELETE_COMPLETE`].[StackName, StackStatus]' \
--output text | \
column -t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment