-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yml
465 lines (443 loc) · 14.7 KB
/
template.yml
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
AWSTemplateFormatVersion: 2010-09-09
#################
# Parameters #
#################
Parameters:
ContainerName:
Description: Container Name
Type: String
Default: digimon
FeatureName:
Description: Nome da feature
Type: String
Default: springboot
MicroServiceName:
Description: Nome do micro servico
Type: String
Default: digimonapi
## Config ECS ##
EcsClusterName:
Description: Name of the ECS Cluster
Type: String
Default: 'digimon-cluster'
ContainerCpu:
Description: The number of cpu units reserved for the container.
Type: Number
Default: 256
ContainerMemory:
Description: The amount (in MiB) of memory to present to the container.
Type: Number
Default: 512
ContainerMemoryReservation:
Description: The soft limit (in MiB) of memory to reserve for the container.
Type: Number
Default: 512
ListenerContainerPort:
Description: Listening port for container
Type: Number
Default: 80
## Config VPC ##
VPCID:
Description: ID da VPC
Type: AWS::EC2::VPC::Id
Default: 'vpc-0a4e9003ced15318f '
PrivateSubnets:
Type: List<AWS::EC2::Subnet::Id>
Description: List of private subnets
Default: 'subnet-00c9e85e8ba51fb9c,subnet-0d36188f646d696fa'
#################
# Resources #
#################
Resources:
CloudWatchLogGroup:
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName: !Sub '${FeatureName}-${MicroServiceName}'
RetentionInDays: 7
EcsCluster:
Type: 'AWS::ECS::Cluster'
Properties:
ClusterName: !Sub '${EcsClusterName}'
CapacityProviders:
- FARGATE
- FARGATE_SPOT
DefaultCapacityProviderStrategy:
- CapacityProvider: FARGATE
Weight: 1
- CapacityProvider: FARGATE_SPOT
Weight: 1
TaskDefinition:
Type: 'AWS::ECS::TaskDefinition'
Properties:
ContainerDefinitions:
- Name: !Sub '${ContainerName}'
Image: '416068129208.dkr.ecr.us-east-1.amazonaws.com/digimonapi:latest'
PortMappings:
- ContainerPort: !Ref ListenerContainerPort
HostPort: !Ref ListenerContainerPort
Cpu: !Ref ContainerCpu
Memory: !Ref ContainerMemory
MemoryReservation: !Ref ContainerMemoryReservation
Essential: true
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-region: !Sub '${AWS::Region}'
awslogs-group: !Sub '${FeatureName}-${MicroServiceName}'
awslogs-stream-prefix: !Sub '${FeatureName}-${MicroServiceName}'
Family: !Sub 'family-${FeatureName}-${MicroServiceName}'
NetworkMode: awsvpc
Memory: !Ref ContainerMemoryReservation
Cpu: !Ref ContainerCpu
ExecutionRoleArn: !GetAtt TaskExecutionRole.Arn
TaskRoleArn: !Ref TaskExecutionRole
RequiresCompatibilities:
- FARGATE
DependsOn: CloudWatchLogGroup
TaskExecutionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service:
- ecs-tasks.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: !Sub '${FeatureName}-${MicroServiceName}-AmazonECSTaskExecutionRolePolicy'
PolicyDocument:
Statement:
- Effect: Allow
Action:
- 'ecr:GetAuthorizationToken'
- 'ecr:BatchCheckLayerAvailability'
- 'ecr:GetDownloadUrlForLayer'
- 'ecr:BatchGetImage'
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- 'logs:DescribeLogStreams'
Resource: '*'
- PolicyName: !Sub '${FeatureName}-${MicroServiceName}-ECS'
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'ecs:DiscoverPollEndpoint'
- 'ecs:RegisterContainerInstance'
- 'ecs:SubmitContainerStateChange'
- 'ecs:SubmitTaskStateChange'
- 'ecs:ListContainerInstances'
- 'ecs:Poll'
- 'ecs:StartTelemetrySession'
- 'ecs:UpdateContainerInstancesState'
- 'ecs:ListTasks'
- 'ecs:DescribeContainerInstances'
Resource: '*'
- PolicyName: !Sub '${FeatureName}-${MicroServiceName}-passrole'
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'iam:PassRole'
Resource: !Sub >-
arn:aws:ecs:${AWS::Region}:${AWS::AccountId}:container-instance/*
- PolicyName: !Sub '${FeatureName}-${MicroServiceName}-passrole-2'
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'iam:PassRole'
Resource: !Sub >-
arn:aws:ecs:${AWS::Region}:${AWS::AccountId}:cluster/${EcsClusterName}
- PolicyName: !Sub '${FeatureName}-${MicroServiceName}-cloudwatch'
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'cloudwatch:PutMetricData'
Resource: '*'
SecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupName: !Sub '${AWS::StackName}'
GroupDescription: nlb-digimon-api
VpcId: !Ref VPCID
SecurityGroupIngress:
- IpProtocol: tcp
Description: Conexao com o NLB - TCP
FromPort: 80
ToPort: 80
CidrIp: 0.0.0.0/0
- IpProtocol: '-1'
Description: Conexao para todas as portas
CidrIp: 0.0.0.0/0
- IpProtocol: '-1'
Description: Conexao para todas as portas Ipv6
CidrIpv6: "::/0"
SecurityGroupEgress:
- CidrIp: 0.0.0.0/0
Description: Saida para todas as portas
IpProtocol: '-1'
- CidrIpv6: "::/0"
Description: Saida para todas as portas - Ipv6
IpProtocol: '-1'
Tags:
- Key: Name
Value: !Sub '${AWS::StackName}'
# =================== Load Balancer ===================
TargetGroup:
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties:
Name: !Sub '${MicroServiceName}-TargetGroup'
Port: !Ref ListenerContainerPort
Protocol: TCP
VpcId: !Ref VPCID
TargetType: ip
HealthCheckProtocol: TCP
# HealthCheckIntervalSeconds: 30
# HealthCheckPath: '/actuator/health'
LoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Name: !Sub 'nlb-${MicroServiceName}'
Type: network
Scheme: internet-facing
LoadBalancerAttributes:
- Key: 'load_balancing.cross_zone.enabled'
Value: 'true'
Subnets: !Ref PrivateSubnets
Tags:
- Key: LoadBalancerType
Value: VPCLink
DigimonVpcLink:
Type: AWS::ApiGateway::VpcLink
Properties:
Description: "VpcLink Digimon"
Name: !Sub "${MicroServiceName}-vpc-link"
TargetArns:
- !Ref LoadBalancer
Listener:
Type: AWS::ElasticLoadBalancingV2::Listener
DependsOn: LoadBalancer
Properties:
DefaultActions:
- Type: forward
TargetGroupArn: !Ref TargetGroup
LoadBalancerArn: !Ref LoadBalancer
Port: !Ref ListenerContainerPort
Protocol: TCP
# =================== End Load Balancer ===================
Service:
Type: "AWS::ECS::Service"
Properties:
ServiceName: !Sub service-${FeatureName}-${MicroServiceName}
Cluster: !Ref EcsClusterName
DeploymentConfiguration:
MinimumHealthyPercent: 100
MaximumPercent: 200
DesiredCount: 2
HealthCheckGracePeriodSeconds: 40
# LaunchType: FARGATE
CapacityProviderStrategy:
- CapacityProvider: FARGATE_SPOT
Weight: 5
- CapacityProvider: FARGATE
Weight: 1
PlatformVersion: '1.4.0'
LoadBalancers:
- ContainerName: !Sub ${ContainerName}
ContainerPort: !Ref ListenerContainerPort
TargetGroupArn: !Ref TargetGroup
SchedulingStrategy: REPLICA
TaskDefinition: !Ref TaskDefinition
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: ENABLED
SecurityGroups:
- !Ref SecurityGroup
Subnets: !Ref PrivateSubnets
DependsOn:
- Listener
- EcsCluster
- TaskDefinition
- DigimonVpcLink
# This is an IAM role which authorizes ECS to manage resources on your
# account on your behalf, such as updating your load balancer with the
# details of where your containers are, so that traffic can reach your
# containers.
ECSRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- ecs.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: ecs-service
PolicyDocument:
Version: 2012-10-17
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: '*'
# =================== Auto Scaling ===================
AutoScalingRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub "${FeatureName}-auto-scaling-role"
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ application-autoscaling.amazonaws.com ]
Action: [ "sts:AssumeRole" ]
Policies:
- PolicyName: !Sub "${FeatureName}-auto-scaling-policy"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- ecs:DescribeServices
- ecs:UpdateService
- cloudwatch:PutMetricAlarm
- cloudwatch:DescribeAlarms
- cloudwatch:DeleteAlarms
Resource:
- "*"
ScalableTarget:
Type: AWS::ApplicationAutoScaling::ScalableTarget
DependsOn: Service
Properties:
MinCapacity: 2
MaxCapacity: 6
ResourceId: !Join
- "/"
- - service
- !Ref EcsClusterName
- !GetAtt Service.Name
RoleARN: !GetAtt AutoScalingRole.Arn
ScalableDimension: ecs:service:DesiredCount
ServiceNamespace: ecs
ScheduledActions:
- ScalableTargetAction:
MinCapacity: 0
MaxCapacity: 0
Schedule: 'cron(0 0 22 ? * MON-FRI)'
ScheduledActionName: scale-down
- ScalableTargetAction:
MinCapacity: 2
MaxCapacity: 6
Schedule: 'cron(0 0 11 ? * MON-FRI)'
ScheduledActionName: scale-up
# =================== Auto Scaling CPU ===================
# ScalingPolicy:
# Type: AWS::ApplicationAutoScaling::ScalingPolicy
# Properties:
# PolicyName: !Sub "${FeatureName}-auto-scaling-policy"
# PolicyType: TargetTrackingScaling
# ScalingTargetId: !Ref ScalableTarget
# TargetTrackingScalingPolicyConfiguration:
# PredefinedMetricSpecification:
# PredefinedMetricType: ECSServiceAverageCPUUtilization
# TargetValue: 30.0
# =================== Auto Scaling Number of Requests ===================
ScalingPolicyTCPUp:
Type: AWS::ApplicationAutoScaling::ScalingPolicy
Properties:
PolicyName: ScaleWithFlowCountTCPStepPolicyUp
PolicyType: StepScaling
ScalingTargetId: !Ref ScalableTarget
StepScalingPolicyConfiguration:
AdjustmentType: ChangeInCapacity
Cooldown: 60
MetricAggregationType: Average
StepAdjustments:
- MetricIntervalLowerBound: 0
ScalingAdjustment: +1
ScalingPolicyTCPDown:
Type: AWS::ApplicationAutoScaling::ScalingPolicy
Properties:
PolicyName: ScaleWithFlowCountTCPStepPolicyDown
PolicyType: StepScaling
ScalingTargetId: !Ref ScalableTarget
StepScalingPolicyConfiguration:
AdjustmentType: ChangeInCapacity
Cooldown: 60
MetricAggregationType: Average
StepAdjustments:
- MetricIntervalUpperBound: 0
ScalingAdjustment: -1
# Use Active flow count to scale up
HighTpsAlarm:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmDescription: !Sub '${MicroServiceName} - High volume of requests'
EvaluationPeriods: 1
Threshold: 100
ComparisonOperator: GreaterThanOrEqualToThreshold
Period: 60
Statistic: Sum
MetricName: ActiveFlowCount
Dimensions:
- Name: LoadBalancer
Value: !GetAtt LoadBalancer.LoadBalancerFullName
Namespace: AWS/NetworkELB
AlarmActions:
- !Ref ScalingPolicyTCPUp
# Use Active flow count to scale down
LowTpsAlarm:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmDescription: !Sub '${MicroServiceName} - Low volume of requests'
EvaluationPeriods: 1
Threshold: 90
ComparisonOperator: LessThanOrEqualToThreshold
Period: 60
Statistic: Sum
MetricName: ActiveFlowCount
Dimensions:
- Name: LoadBalancer
Value: !GetAtt LoadBalancer.LoadBalancerFullName
Namespace: AWS/NetworkELB
AlarmActions:
- !Ref ScalingPolicyTCPDown
#################
# Output #
#################
Outputs:
ECSRole:
Description: The ARN of the ECS role
Value: !GetAtt 'ECSRole.Arn'
Export:
Name: !Join [ ':', [ !Ref 'AWS::StackName', 'ECSRole' ] ]