Skip to content

Instantly share code, notes, and snippets.

@amosshapira
Last active June 22, 2017 07:48
Show Gist options
  • Save amosshapira/d45d22e30557ab250fc1960114578283 to your computer and use it in GitHub Desktop.
Save amosshapira/d45d22e30557ab250fc1960114578283 to your computer and use it in GitHub Desktop.
list outputs of a CloudFormation stack in plain text format, one Output per line.
# list outputs of a CloudFormation stack in plain text format
# one output per line.
aws cloudformation describe-stacks \
--stack STACK_NAME \
--query 'Stacks[*].Outputs[*].[OutputValue]' \
--output text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment