Created
June 27, 2015 19:03
-
-
Save ianblenke/9f4b8dd2b39c7d1c31ef to your computer and use it in GitHub Desktop.
An example CloudFormation parameters file for the VPC Template in gist 0a6a6f26d1ecaa0d81eb
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
[ | |
{ "ParameterKey": "Project", "ParameterValue": "myapp" }, | |
{ "ParameterKey": "Environment", "ParameterValue": "dev" }, | |
{ "ParameterKey": "VPCNetworkCIDR", "ParameterValue": "10.0.0.0/16" }, | |
{ "ParameterKey": "VPCSubnet0CIDR", "ParameterValue": "10.0.0.0/24" }, | |
{ "ParameterKey": "VPCSubnet1CIDR", "ParameterValue": "10.0.1.0/24" }, | |
{ "ParameterKey": "VPCSubnet2CIDR", "ParameterValue": "10.0.2.0/24" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment