-
Notifications
You must be signed in to change notification settings - Fork 3
/
cluster.yaml
371 lines (350 loc) · 10.2 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
AWSTemplateFormatVersion: 2010-09-09
Description: Guidance - External Connectivity to Amazon VPC Lattice (Proxy)
Parameters:
VpcId:
Description: The VPC id
Type: String
Default: ''
VpcCidr:
Description: The VPC CIDR block
Type: String
Default: ''
PrivateSubnet1:
Description: The Private Subnet 1 id
Type: String
Default: ''
PrivateSubnet2:
Description: The Private Subnet 2 id
Type: String
Default: ''
PrivateSubnet3:
Description: The Private Subnet 3 id
Type: String
Default: ''
PublicSubnet1:
Description: The Public Subnet 1 id
Type: String
Default: ''
PublicSubnet2:
Description: The Public Subnet 2 id
Type: String
Default: ''
PublicSubnet3:
Description: The Public Subnet 3 id
Type: String
Default: ''
NginxImage:
Description: Container image
Type: String
Default: ''
Resources:
NginxLogGroup:
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName: !Sub '/${NginxCluster}'
NginxExtNLBTGroup443:
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties:
HealthCheckIntervalSeconds: 5
HealthCheckTimeoutSeconds: 2
HealthyThresholdCount: 3
IpAddressType: ipv4
Port: 443
Protocol: TCP
TargetGroupAttributes:
- Key: proxy_protocol_v2.enabled
Value: true
TargetType: ip
UnhealthyThresholdCount: 3
VpcId: !Ref VpcId
NginxExtNLBTGroup80:
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties:
HealthCheckIntervalSeconds: 5
HealthCheckTimeoutSeconds: 2
HealthyThresholdCount: 3
IpAddressType: ipv4
Port: 80
Protocol: TCP
TargetGroupAttributes:
- Key: proxy_protocol_v2.enabled
Value: true
TargetType: ip
UnhealthyThresholdCount: 3
VpcId: !Ref VpcId
NginxExtNLB:
Type: 'AWS::ElasticLoadBalancingV2::LoadBalancer'
Properties:
IpAddressType: dualstack
Scheme: internet-facing
Subnets:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
- !Ref PublicSubnet3
Type: network
NginxExtNLBListener443:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
Properties:
DefaultActions:
- TargetGroupArn: !Ref NginxExtNLBTGroup443
Type: forward
LoadBalancerArn: !Ref NginxExtNLB
Port: 443
Protocol: TCP
NginxExtNLBListener80:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
Properties:
DefaultActions:
- TargetGroupArn: !Ref NginxExtNLBTGroup80
Type: forward
LoadBalancerArn: !Ref NginxExtNLB
Port: 80
Protocol: TCP
NginxIntNLBTGroup443:
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties:
HealthCheckIntervalSeconds: 5
HealthCheckTimeoutSeconds: 2
HealthyThresholdCount: 3
IpAddressType: ipv4
Port: 443
Protocol: TCP
TargetGroupAttributes:
- Key: proxy_protocol_v2.enabled
Value: true
TargetType: ip
UnhealthyThresholdCount: 3
VpcId: !Ref VpcId
NginxIntNLBTGroup80:
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties:
HealthCheckIntervalSeconds: 5
HealthCheckTimeoutSeconds: 2
HealthyThresholdCount: 3
IpAddressType: ipv4
Port: 80
Protocol: TCP
TargetGroupAttributes:
- Key: proxy_protocol_v2.enabled
Value: true
TargetType: ip
UnhealthyThresholdCount: 3
VpcId: !Ref VpcId
NginxIntNLB:
Type: 'AWS::ElasticLoadBalancingV2::LoadBalancer'
Properties:
IpAddressType: dualstack
Scheme: internal
Subnets:
- !Ref PrivateSubnet1
- !Ref PrivateSubnet2
- !Ref PrivateSubnet3
Type: network
NginxIntNLBListener443:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
Properties:
DefaultActions:
- TargetGroupArn: !Ref NginxIntNLBTGroup443
Type: forward
LoadBalancerArn: !Ref NginxIntNLB
Port: 443
Protocol: TCP
NginxIntNLBListener80:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
Properties:
DefaultActions:
- TargetGroupArn: !Ref NginxIntNLBTGroup80
Type: forward
LoadBalancerArn: !Ref NginxIntNLB
Port: 80
Protocol: TCP
NginxCluster:
Type: 'AWS::ECS::Cluster'
Properties:
CapacityProviders:
- FARGATE
ClusterSettings:
- Name: containerInsights
Value: enabled
NginxTask:
Type: 'AWS::ECS::TaskDefinition'
Properties:
ExecutionRoleArn: !Ref NginxTaskExecRole
NetworkMode: awsvpc
ContainerDefinitions:
- Image: !Ref NginxImage
Name: Nginx
PortMappings:
- ContainerPort: 443
Protocol: tcp
- ContainerPort: 80
Protocol: tcp
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-region: !Ref 'AWS::Region'
awslogs-group: !Ref NginxLogGroup
awslogs-stream-prefix: lattice-ingress
Ulimits:
- HardLimit: 1048576
Name: nofile
SoftLimit: 1048576
Cpu: 2048
Memory: 4096
RequiresCompatibilities:
- FARGATE
RuntimePlatform:
CpuArchitecture: ARM64
OperatingSystemFamily: LINUX
TaskRoleArn: !Ref NginxTaskRole
NginxService:
Type: 'AWS::ECS::Service'
DependsOn:
- NginxExtNLBListener443
- NginxIntNLBListener443
- NginxExtNLBListener80
- NginxIntNLBListener80
Properties:
Cluster: !Ref NginxCluster
EnableExecuteCommand: true
LaunchType: FARGATE
LoadBalancers:
- ContainerName: Nginx
ContainerPort: 443
TargetGroupArn: !Ref NginxExtNLBTGroup443
- ContainerName: Nginx
ContainerPort: 443
TargetGroupArn: !Ref NginxIntNLBTGroup443
- ContainerName: Nginx
ContainerPort: 80
TargetGroupArn: !Ref NginxExtNLBTGroup80
- ContainerName: Nginx
ContainerPort: 80
TargetGroupArn: !Ref NginxIntNLBTGroup80
NetworkConfiguration:
AwsvpcConfiguration:
SecurityGroups:
- !Ref NginxSecurityGroup
Subnets:
- !Ref PrivateSubnet1
- !Ref PrivateSubnet2
- !Ref PrivateSubnet3
SchedulingStrategy: REPLICA
TaskDefinition: !Ref NginxTask
NginxSecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
VpcId: !Ref VpcId
GroupDescription: Nginx Security group
SecurityGroupIngress:
- CidrIp: !Ref VpcCidr
IpProtocol: tcp
FromPort: 443
ToPort: 443
Description: Ingress rule for tcp 443
- CidrIp: !Ref VpcCidr
IpProtocol: tcp
FromPort: 80
ToPort: 80
Description: Ingress rule for tcp 80
SecurityGroupEgress:
- CidrIp: 0.0.0.0/0
IpProtocol: '-1'
FromPort: -1
ToPort: -1
Tags:
- Key: Name
Value: Nginx SG
NginxTaskExecRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- ecs-tasks.amazonaws.com
Action:
- 'sts:AssumeRole'
Policies:
- PolicyName: ecs-actions
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'ecr:GetAuthorizationToken'
- 'ecr:BatchCheckLayerAvailability'
- 'ecr:GetDownloadUrlForLayer'
- 'ecr:BatchGetImage'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- 'ssmmessages:CreateControlChannel'
- 'ssmmessages:CreateDataChannel'
- 'ssmmessages:OpenControlChannel'
- 'ssmmessages:OpenDataChannel'
Resource: '*'
NginxTaskRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- ecs-tasks.amazonaws.com
Action:
- 'sts:AssumeRole'
Policies:
- PolicyName: ecs-actions
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'ssmmessages:CreateControlChannel'
- 'ssmmessages:CreateDataChannel'
- 'ssmmessages:OpenControlChannel'
- 'ssmmessages:OpenDataChannel'
Resource: '*'
NginxScalableTarget:
Type: AWS::ApplicationAutoScaling::ScalableTarget
Properties:
MaxCapacity: 9
MinCapacity: 3
ResourceId: !Join ['',['service/',!Ref NginxCluster,'/',!GetAtt NginxService.Name]]
RoleARN: !Sub 'arn:aws:iam::${AWS::AccountId}:role/aws-service-role/ecs.application-autoscaling.amazonaws.com/AWSServiceRoleForApplicationAutoScaling_ECSService'
ScalableDimension: 'ecs:service:DesiredCount'
ServiceNamespace: 'ecs'
NginxScalingPolicy:
Type: AWS::ApplicationAutoScaling::ScalingPolicy
Properties:
PolicyName: !Join ['',['scaling-policy-',!GetAtt NginxService.Name]]
PolicyType: 'TargetTrackingScaling'
ResourceId: !Join ['',['service/',!Ref NginxCluster,'/',!GetAtt NginxService.Name]]
ScalableDimension: 'ecs:service:DesiredCount'
ScalingTargetId: !Ref NginxScalableTarget
TargetTrackingScalingPolicyConfiguration:
TargetValue: 70.0
ScaleInCooldown: 60
ScaleOutCooldown: 60
PredefinedMetricSpecification:
PredefinedMetricType: ECSServiceAverageCPUUtilization
Outputs:
VpcId:
Description: ECS VPC ID
Value: !Ref VpcId
Export:
Name: !Sub ${AWS::StackName}-VpcId
NginxExtNLB:
Description: ECS External Load Balancer Name
Value: !GetAtt NginxExtNLB.DNSName
Export:
Name: !Sub ${AWS::StackName}-NginxExtNLB
NginxIntNLB:
Description: ECS Internal Load Balancer Name
Value: !GetAtt NginxIntNLB.DNSName
Export:
Name: !Sub ${AWS::StackName}-NginxIntNLB