amazon vpc deploy docker container code example
Example 1: launch a costom docker images with cloud formation
InternetGateway:
Type: AWS::EC2::InternetGateway
GatewayAttachement:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
VpcId: !Ref 'VPC'
InternetGatewayId: !Ref 'InternetGateway'
Example 2: launch a costom docker images with cloud formation
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: '10.0.0.0/16'