After review of many stack's, Im still stumped. Trying to create a cloudformation script that will reference an existing VPC ID and add a new subnet and keep getting syntax error. Any thoughts?
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Resources" : {
"mySubnet" : {
"Type" : "AWS::EC2::Subnet",
"Properties" : {
"VpcId" : { "Ref" : "VPC" },
"CidrBlock" : "10.0.0.0/24",
"AvailabilityZone" : "us-east-1a",
}
}
}
}