github.com/mohanarpit/terraform@v0.6.16-0.20160909104007-291f29853544/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  }