found when fixing bug #
1101098
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
Change-Id: I7591111bcdf768119d265d0a9c901a0e189604d3
Type: AWS::EC2::InternetGateway
the_vpc:
Type: AWS::EC2::VPC
+ DependsOn : the_gateway
Properties:
- DependsOn : the_gateway
CidrBlock: '10.0.0.0/16'
the_subnet:
Type: AWS::EC2::Subnet
AvailabilityZone: moon
the_attachment:
Type: AWS::EC2::VPCGatewayAttachment
+ DependsOn : the_subnet
Properties:
VpcId: {Ref: the_vpc}
- DependsOn : the_subnet
InternetGatewayId: {Ref: the_gateway}
'''