github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/builtin/providers/aws/test-fixtures/cloudformation-template.json (about) 1 { 2 "Parameters" : { 3 "VpcCIDR" : { 4 "Description" : "CIDR to be used for the VPC", 5 "Type" : "String" 6 } 7 }, 8 "Resources" : { 9 "MyVPC": { 10 "Type" : "AWS::EC2::VPC", 11 "Properties" : { 12 "CidrBlock" : {"Ref": "VpcCIDR"}, 13 "Tags" : [ 14 {"Key": "Name", "Value": "Primary_CF_VPC"} 15 ] 16 } 17 } 18 } 19 }