Skip to content

Instantly share code, notes, and snippets.

@snehaso
Created January 19, 2015 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snehaso/f0ee891826241f31194f to your computer and use it in GitHub Desktop.
Save snehaso/f0ee891826241f31194f to your computer and use it in GitHub Desktop.
cloudformation.json
"usEast1bPublic": {
"Type": "AWS::EC2::Subnet",
"Properties": {
"VpcId": {
"Ref": "VPC"
},
"CidrBlock": "10.0.0.0/24",
"AvailabilityZone": "us-east-1b"
}
},
"Nat": {
"Type": "AWS::EC2::Instance",
"Properties" : {
"AvailabilityZone": "us-east-1b",
"DisableApiTermination": "FALSE",
"ImageId": "ami-2e1bc047",
"InstanceType": "m1.small",
"SubnetId": {
"Ref": "usEast1bPublic"
},
"KeyName": "gwt_gdc_to_aws_migration",
"Monitoring": "false"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment