Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ Resources:
Properties:
SubnetId: !Ref PrivateSubnet3
RouteTableId: !Ref PrivateRouteTable3
EC2EndpointSecurityGroup:
HTTPSSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: EC2 Endpoint Security Group
GroupDescription: HTTPS Security Group
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 443
Expand All @@ -197,7 +197,7 @@ Resources:
- '*'
PrivateDnsEnabled: "true"
SecurityGroupIds:
- !Ref EC2EndpointSecurityGroup
- !Ref HTTPSSecurityGroup
ServiceName: !Join
- ''
- - com.amazonaws.
Expand All @@ -209,6 +209,32 @@ Resources:
- !If [DoAz3, !Ref PublicSubnet3, !Ref "AWS::NoValue"]
VpcEndpointType: Interface
VpcId: !Ref VPC
ELBEndpoint:
Type: AWS::EC2::VPCEndpoint
Properties:
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal: '*'
Action:
- '*'
Resource:
- '*'
PrivateDnsEnabled: "true"
SecurityGroupIds:
- !Ref HTTPSSecurityGroup
ServiceName: !Join
- ''
- - com.amazonaws.
- !Ref 'AWS::Region'
- .elasticloadbalancing
SubnetIds:
- !Ref PublicSubnet
- !If [DoAz2, !Ref PublicSubnet2, !Ref "AWS::NoValue"]
- !If [DoAz3, !Ref PublicSubnet3, !Ref "AWS::NoValue"]
VpcEndpointType: Interface
VpcId: !Ref VPC
S3Endpoint:
Type: AWS::EC2::VPCEndpoint
Properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ workflow:
Image append should create images by appending them\|
Image info should display information about images\|
Internal connectivity for TCP and UDP on ports 9000-9999 is allowed\|
Managed cluster should have machine resources\|
Managed cluster should should expose cluster services outside the cluster\|
Networking should provide Internet connection for containers\|
The HAProxy router should respond with 503 to unrecognized hosts\|
Expand Down