Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ianblenke/9f4b8dd2b39c7d1c31ef to your computer and use it in GitHub Desktop.
Save ianblenke/9f4b8dd2b39c7d1c31ef to your computer and use it in GitHub Desktop.
An example CloudFormation parameters file for the VPC Template in gist 0a6a6f26d1ecaa0d81eb
[
{ "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