Last active
August 29, 2015 14:18
-
-
Save rnhurt/a1263c6f83f05b0fe70a to your computer and use it in GitHub Desktop.
Cloud Formation Templates
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
{ | |
"IPAddresses": { | |
"Home" : ["1.2.3.4/32"], | |
"Home" : ["5.6.7.8/32"] | |
}, | |
"Regions" : [ | |
{ | |
"Id" : "us-east-1", | |
"Name" : "USEast1", | |
"AvailabilityZones" : [ "a", "c", "d", "e" ], | |
"AMIs" : { | |
"windows_core" : "ami-aa7830c2", | |
"linux_amazon" : "ami-1ecae776" | |
} | |
}, | |
{ | |
"Id" : "us-west-2", | |
"Name" : "USWest2", | |
"AvailabilityZones" : [ "a", "b", "c" ], | |
"AMIs" : { | |
"windows_core" : "ami-0fb6943f", | |
"linux_amazon" : "ami-ff527ecf" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment