-
Notifications
You must be signed in to change notification settings - Fork 3
/
cluster.yaml
253 lines (237 loc) · 7.69 KB
/
cluster.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
---
AWSTemplateFormatVersion: "2010-09-09"
Description: ECS cluster infrastructure
Parameters:
ECSClusterName:
Type: String
Description: Name of the ECS cluster
AppName:
Type: String
Description: Name of the application
VPCStackName:
Type: String
Description: VPCStackName - output value from the bootstrap stack
Resources:
PublicLoadBalancerSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Access to the public facing load balancer
VpcId:
Fn::ImportValue:
!Sub "${VPCStackName}-VPCID"
SecurityGroupIngress:
- CidrIp: 0.0.0.0/0
IpProtocol: -1
SecurityGroupEgress:
- CidrIp: 0.0.0.0/0
IpProtocol: -1
PublicLoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Scheme: internet-facing
Subnets:
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet1ID"
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet2ID"
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet3ID"
SecurityGroups: [!Ref 'PublicLoadBalancerSecurityGroup']
LoadBalancerTargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
Properties:
HealthCheckIntervalSeconds: 30
HealthCheckPath: "/"
HealthCheckProtocol: HTTP
HealthCheckTimeoutSeconds: 5
HealthyThresholdCount: 2
TargetType: ip
Name: !Ref AppName
Port: 80
Protocol: HTTP
UnhealthyThresholdCount: 2
VpcId:
Fn::ImportValue:
!Sub "${VPCStackName}-VPCID"
LoadBalancerListener:
Type: AWS::ElasticLoadBalancingV2::Listener
Properties:
DefaultActions:
- TargetGroupArn: !Ref LoadBalancerTargetGroup
Type: forward
LoadBalancerArn: !Ref PublicLoadBalancer
Port: 80
Protocol: HTTP
LoadBalancerRule:
Type: AWS::ElasticLoadBalancingV2::ListenerRule
Properties:
Actions:
- TargetGroupArn: !Ref LoadBalancerTargetGroup
Type: forward
Conditions:
- Field: path-pattern
Values:
- "/"
ListenerArn: !Ref LoadBalancerListener
Priority: 1
ECSSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Access to the ECS containers
VpcId:
Fn::ImportValue:
!Sub "${VPCStackName}-VPCID"
SecurityGroupEgress:
- CidrIp: 0.0.0.0/0
IpProtocol: -1
ECSSecurityGroupIngressFromPublicALB:
Type: AWS::EC2::SecurityGroupIngress
Properties:
Description: Ingress from the public ALB
GroupId: !Ref ECSSecurityGroup
IpProtocol: -1
SourceSecurityGroupId: !Ref PublicLoadBalancerSecurityGroup
ECSSecurityGroupIngressFromSelf:
Type: AWS::EC2::SecurityGroupIngress
Properties:
Description: Ingress from other containers in the same security group
GroupId: !Ref ECSSecurityGroup
IpProtocol: -1
SourceSecurityGroupId: !Ref ECSSecurityGroup
ECSRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ecs.amazonaws.com]
Action: ['sts:AssumeRole']
Path: /
Policies:
- PolicyName: ecs-service
PolicyDocument:
Statement:
- Effect: Allow
Action:
# Rules which allow ECS to attach network interfaces to instances
# on your behalf in order for awsvpc networking mode to work right
- 'ec2:AttachNetworkInterface'
- 'ec2:CreateNetworkInterface'
- 'ec2:CreateNetworkInterfacePermission'
- 'ec2:DeleteNetworkInterface'
- 'ec2:DeleteNetworkInterfacePermission'
- 'ec2:Describe*'
- 'ec2:DetachNetworkInterface'
# Rules which allow ECS to update load balancers on your behalf
# with the information sabout how to send traffic to your containers
- 'elasticloadbalancing:DeregisterInstancesFromLoadBalancer'
- 'elasticloadbalancing:DeregisterTargets'
- 'elasticloadbalancing:Describe*'
- 'elasticloadbalancing:RegisterInstancesWithLoadBalancer'
- 'elasticloadbalancing:RegisterTargets'
Resource: '*'
ECSCluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: !Ref ECSClusterName
CapacityProviders:
- FARGATE
- FARGATE_SPOT
ClusterSettings:
- Name: containerInsights
Value: enabled
ECSTaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
ContainerDefinitions:
- Essential: true
Image: amazon/amazon-ecs-sample # placeholder container image
Environment:
- Name: PORT
Value: 80
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-create-group: true
awslogs-group: !Sub "/ecs/${AppName}-task-definition-family"
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: ecs
Name: !Ref AppName
PortMappings:
- ContainerPort: 80
Protocol: "tcp"
Family: !Sub "${AppName}-task-definition-family"
ExecutionRoleArn: !GetAtt ECSTaskExecutionRole.Arn
NetworkMode: "awsvpc"
RequiresCompatibilities:
- FARGATE
Cpu: 1024
Memory: 3072
ECSTaskExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ecs-tasks.amazonaws.com]
Action: ['sts:AssumeRole']
MaxSessionDuration: 3600
Policies:
- PolicyName: AmazonECSTaskExecutionRolePolicy
PolicyDocument:
Statement:
- Effect: Allow
Action:
# Allow the ECS Tasks to download images from ECR
- 'ecr:GetAuthorizationToken'
- 'ecr:BatchCheckLayerAvailability'
- 'ecr:GetDownloadUrlForLayer'
- 'ecr:BatchGetImage'
# Allow the ECS tasks to upload logs to CloudWatch
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
Resource: '*'
ECSService:
Type: AWS::ECS::Service
DependsOn:
- PublicLoadBalancer
Properties:
ServiceName: !Sub "${AppName}-service"
Cluster: !GetAtt ECSCluster.Arn
LoadBalancers:
- TargetGroupArn: !Ref LoadBalancerTargetGroup
ContainerName: !Ref AppName
ContainerPort: 80
LaunchType: FARGATE
DesiredCount: 1
PlatformVersion: LATEST
TaskDefinition: !Ref ECSTaskDefinition
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100
DeploymentCircuitBreaker:
Enable: true
Rollback: true
HealthCheckGracePeriodSeconds: 0
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: ENABLED
SecurityGroups:
- !Ref ECSSecurityGroup
Subnets:
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet1ID"
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet2ID"
- Fn::ImportValue:
!Sub "${VPCStackName}-PublicSubnet3ID"
Outputs:
ECSCluster:
Description: "ECR Cluster Name"
Value: !Ref ECSCluster
ECSService:
Description: "ECR Service Name"
Value: !GetAtt ECSService.Name