Last active
October 19, 2016 04:43
-
-
Save amosshapira/261e0c4c615eb9665f81c5269b0c1252 to your computer and use it in GitHub Desktop.
List existing CloudFormation stacks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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