Last active
August 29, 2015 14:23
-
-
Save ianblenke/59715079304a6db7182c to your computer and use it in GitHub Desktop.
Sample output from running gist 55b740ff19825d621ef4 Makefile: make outputs
This file contains hidden or 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
aws cloudformation describe-stacks --stack-name myapp-dev --profile aws-dev --region us-east-1 | jq -r '.Stacks[].Outputs' | |
[ | |
{ | |
"Description": "VPC Id", | |
"OutputKey": "VpcId", | |
"OutputValue": "vpc-b7d1d8d2" | |
}, | |
{ | |
"Description": "VPC", | |
"OutputKey": "VPCDefaultNetworkAcl", | |
"OutputValue": "acl-b3cfc7d6" | |
}, | |
{ | |
"Description": "VPC Default Security Group that we blissfully ignore thanks to self-referencing bugs", | |
"OutputKey": "VPCDefaultSecurityGroup", | |
"OutputValue": "sg-3e50a559" | |
}, | |
{ | |
"Description": "VPC Security Group created by this stack", | |
"OutputKey": "VPCSecurityGroup", | |
"OutputValue": "sg-0c50a56b" | |
}, | |
{ | |
"Description": "The subnet id for VPCSubnet0", | |
"OutputKey": "VPCSubnet0", | |
"OutputValue": "subnet-995236b2" | |
}, | |
{ | |
"Description": "The subnet id for VPCSubnet1", | |
"OutputKey": "VPCSubnet1", | |
"OutputValue": "subnet-6aa4fd1d" | |
}, | |
{ | |
"Description": "The subnet id for VPCSubnet2", | |
"OutputKey": "VPCSubnet2", | |
"OutputValue": "subnet-ad3644f4" | |
}, | |
{ | |
"Description": "The IAM instance profile for EC2 instances", | |
"OutputKey": "InstanceProfile", | |
"OutputValue": "myapp-dev-InstanceProfile-1KCQJP9M5TSVZ" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment