-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCloudFormationTemplate.yml
431 lines (431 loc) · 13.5 KB
/
CloudFormationTemplate.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
AWSTemplateFormatVersion: "2010-09-09"
Description: AWS Cloud Formation template - Roulette
Parameters:
DeployEnvironment:
Type: String
Default: development
AllowedValues: ["production", "testing", "development"]
VpcId:
Type: AWS::EC2::VPC::Id
Description: Select a VPC that allows instances access to the Internet.
SubnetId:
Type: List<AWS::EC2::Subnet::Id>
Description: Select at least two subnets in your selected VPC.
DesiredCapacity:
Type: Number
Default: 1
Description: Number of instances to launch in your ECS cluster.
MaxSize:
Type: Number
Default: 10
Description: Maximum number of instances that can be launched in your ECS cluster.
ImageTag:
Type: String
Default: latest
Description: Please choose docker image tag.
ContainerPort:
Type: Number
Default: 80
InstanceType:
Type: String
Description: EC2 instance type.
Default: t3a.micro
AllowedValues: [t3a.micro, t3.medium]
ConstraintDescription: Please choose a valid instance type.
AutoScalingTargetValue:
Type: Number
Default: 50
Description: Choose CPU usage percentage to scale.
MinContainers:
Type: Number
Default: 1
Description: Choose minimum number of containers.
MaxContainers:
Type: Number
Default: 10
Description: Choose maximum number of containers.
Certificate:
Type: String
Default: "arn:aws:acm:region:123456789012:certificate/00000000-0000-0000-0000-000000000000"
Description: Update with the certificate ARN from Certificate Manager, which must exist in the same region.
HostedZoneName:
Type: String
Default: company.com
Description: Update with hosted zone from Route53.
Subdomain:
Type: String
Default: myservice
Description: Update with Subdomain name.
Mappings:
AWSRegionToAMI:
us-east-1:
AMIID: ami-0c1f575380708aa63
Resources:
# Repository
ECR:
Type: "AWS::ECR::Repository"
Properties:
RepositoryName: roulette
# CloudWatch Log Group
CloudwatchLogsGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: /ecs/Roulette
RetentionInDays: 14
# IAM
EC2Role:
Type: AWS::IAM::Role
Properties:
RoleName: EC2RoleForECSInstance
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ec2.amazonaws.com]
Action: ["sts:AssumeRole"]
Path: /
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore
Policies:
- PolicyName: EC2PolicyForECSInstance
PolicyDocument:
Statement:
- Effect: Allow
Action:
- "ecs:CreateCluster"
- "ecs:DeregisterContainerInstance"
- "ecs:DiscoverPollEndpoint"
- "ecs:Poll"
- "ecs:RegisterContainerInstance"
- "ecs:StartTelemetrySession"
- "ecs:Submit*"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: "*"
ExecutionRole:
Type: AWS::IAM::Role
Properties:
RoleName: TaskExecutionRole
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: ecs-tasks.amazonaws.com
Action: "sts:AssumeRole"
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy"
TaskRole:
Type: AWS::IAM::Role
Properties:
RoleName: RouletteTaskRole
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: ecs-tasks.amazonaws.com
Action: "sts:AssumeRole"
Policies:
- PolicyName: RouletteTaskPolicy
PolicyDocument:
Statement:
- Effect: Allow
Action:
- sns:*
Resource: "*"
ECSServiceRole:
Type: AWS::IAM::Role
Properties:
RoleName: ECSServiceRole
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [ecs.amazonaws.com]
Action: ["sts:AssumeRole"]
Path: /
Policies:
- PolicyName: ECSService
PolicyDocument:
Statement:
- Effect: Allow
Action:
- "elasticloadbalancing:DeregisterInstancesFromLoadBalancer"
- "elasticloadbalancing:DeregisterTargets"
- "elasticloadbalancing:Describe*"
- "elasticloadbalancing:RegisterInstancesWithLoadBalancer"
- "elasticloadbalancing:RegisterTargets"
- "ec2:Describe*"
- "ec2:AuthorizeSecurityGroupIngress"
Resource: "*"
AutoscalingRole:
Type: AWS::IAM::Role
Properties:
RoleName: AutoscalingRole
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: [application-autoscaling.amazonaws.com]
Action: ["sts:AssumeRole"]
Path: /
Policies:
- PolicyName: ServiceAutoscalingPolicy
PolicyDocument:
Statement:
- Effect: Allow
Action:
- "application-autoscaling:*"
- "cloudwatch:DescribeAlarms"
- "cloudwatch:PutMetricAlarm"
- "ecs:DescribeServices"
- "ecs:UpdateService"
Resource: "*"
EC2InstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: /
Roles: [!Ref EC2Role]
# Security Groups
EcsSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupName: Roulette
GroupDescription: ECS Security Group for Roulette.
VpcId: !Ref VpcId
EcsSecurityGroupHTTPSInbound:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref EcsSecurityGroup
IpProtocol: tcp
FromPort: "443"
ToPort: "443"
CidrIp: 0.0.0.0/0
EcsSecurityGroupRedisInbound:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref EcsSecurityGroup
IpProtocol: tcp
FromPort: "6379"
ToPort: "6379"
SourceSecurityGroupId: !Ref EcsSecurityGroup
EcsSecurityGroupALBPorts:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref EcsSecurityGroup
IpProtocol: tcp
FromPort: "31000"
ToPort: "61000"
SourceSecurityGroupId: !Ref EcsSecurityGroup
# Redis
ElasticCacheSubnetGroup:
Type: "AWS::ElastiCache::SubnetGroup"
Properties:
CacheSubnetGroupName: Roulette
Description: "Roulette Elastic Cache Subnet Group"
SubnetIds: !Ref SubnetId
ElastiCache:
Type: "AWS::ElastiCache::ReplicationGroup"
Properties:
ReplicationGroupId: Roulette
ReplicationGroupDescription: Redis for Roulette
AutomaticFailoverEnabled: false
NumCacheClusters: 1
Engine: "redis"
CacheNodeType: "cache.t2.micro"
EngineVersion: "5.0.6"
CacheSubnetGroupName: !Ref ElasticCacheSubnetGroup
SecurityGroupIds: [!Ref "EcsSecurityGroup"]
# SNS
SNS:
Type: AWS::SNS::Topic
Properties:
TopicName: Roulette
# ECS Cluster
LaunchConfiguration:
Type: AWS::AutoScaling::LaunchConfiguration
Properties:
LaunchConfigurationName: Roulette
ImageId: !FindInMap [AWSRegionToAMI, !Ref "AWS::Region", AMIID]
AssociatePublicIpAddress: true
SecurityGroups: [!Ref "EcsSecurityGroup"]
InstanceType: !Ref "InstanceType"
IamInstanceProfile: !Ref "EC2InstanceProfile"
BlockDeviceMappings:
- DeviceName: "/dev/xvda"
Ebs:
VolumeSize: 30
VolumeType: gp2
UserData:
Fn::Base64: |
#!/bin/bash -xe
echo ECS_CLUSTER=Roulette >> /etc/ecs/ecs.config
echo ECS_RESERVED_MEMORY=256 >> /etc/ecs/ecs.config
ECSAutoScalingGroup:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
VPCZoneIdentifier: !Ref "SubnetId"
LaunchConfigurationName: !Ref "LaunchConfiguration"
MinSize: 1
MaxSize: !Ref "MaxSize"
DesiredCapacity: !Ref "DesiredCapacity"
Tags:
- Key: Name
Value: !Sub "ECS Instance - Roulette"
PropagateAtLaunch: true
- Key: Description
Value: "This instance is the part of the Auto Scaling group which was created through ECS Console"
PropagateAtLaunch: true
ECSCapacityProvider:
Type: AWS::ECS::CapacityProvider
DependsOn: ECSAutoScalingGroup
Properties:
AutoScalingGroupProvider:
AutoScalingGroupArn: !Ref ECSAutoScalingGroup
ManagedScaling:
Status: ENABLED
TargetCapacity: 100
ECSCluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: Roulette
ClusterSettings:
- Name: containerInsights
Value: "enabled"
CapacityProviders:
- !Ref ECSCapacityProvider
DefaultCapacityProviderStrategy:
- Base: 0
CapacityProvider: !Ref ECSCapacityProvider
Weight: 1
# Service
TaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
Family: Roulette
ExecutionRoleArn: !Ref ExecutionRole
TaskRoleArn: !Ref TaskRole
ContainerDefinitions:
- Name: roulette
Image: !Sub "${AWS::AccountId}.dkr.ecr.${AWS::Region}.amazonaws.com/${ECR}:${ImageTag}"
Cpu: 512
Memory: 512
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-group: !Ref "CloudwatchLogsGroup"
awslogs-region: !Ref "AWS::Region"
awslogs-stream-prefix: ecs-roulette
PortMappings:
- ContainerPort: !Ref ContainerPort
Environment:
- Name: NODE_ENV
Value: !Ref DeployEnvironment
- Name: PORT
Value: !Ref ContainerPort
- Name: SNS_TOPIC_ARN
Value: !Ref SNS
- Name: REDIS_HOST
Value: !GetAtt "ElastiCache.PrimaryEndPoint.Address"
- Name: REGION
Value: !Ref AWS::Region
Service:
Type: AWS::ECS::Service
Properties:
Cluster: !Ref "ECSCluster"
DesiredCount: 1
LoadBalancers:
- ContainerName: roulette
ContainerPort: !Ref ContainerPort
TargetGroupArn: !Ref ECSApplicationLoadBalancerTargetGroup
Role: !Ref "ECSServiceRole"
TaskDefinition: !Ref "TaskDefinition"
ServiceScalingTarget:
Type: AWS::ApplicationAutoScaling::ScalableTarget
DependsOn: Service
Properties:
MaxCapacity: !Ref MaxContainers
MinCapacity: !Ref MinContainers
ResourceId:
!Join ["", [service/, !Ref "ECSCluster", /, !GetAtt [Service, Name]]]
RoleARN: !GetAtt [AutoscalingRole, Arn]
ScalableDimension: ecs:service:DesiredCount
ServiceNamespace: ecs
ServiceAutoScalingPolicy:
Type: AWS::ApplicationAutoScaling::ScalingPolicy
Properties:
PolicyName: RouletteServiceAutoScalingPolicy
PolicyType: TargetTrackingScaling
ScalingTargetId: !Ref ServiceScalingTarget
TargetTrackingScalingPolicyConfiguration:
PredefinedMetricSpecification:
PredefinedMetricType: ECSServiceAverageCPUUtilization
ScaleInCooldown: 60
ScaleOutCooldown: 60
TargetValue: !Ref AutoScalingTargetValue
# Load Balancer
ECSApplicationLoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Name: Roulette
Scheme: internet-facing
LoadBalancerAttributes:
- Key: idle_timeout.timeout_seconds
Value: "30"
Subnets: !Ref "SubnetId"
SecurityGroups: [!Ref "EcsSecurityGroup"]
ECSApplicationLoadBalancerListener:
Type: AWS::ElasticLoadBalancingV2::Listener
DependsOn:
- ECSServiceRole
Properties:
DefaultActions:
- Type: forward
TargetGroupArn: !Ref "ECSApplicationLoadBalancerTargetGroup"
LoadBalancerArn: !Ref "ECSApplicationLoadBalancer"
Port: "443"
Protocol: HTTPS
Certificates:
- CertificateArn: !Ref Certificate
ECSApplicationLoadBalancerListenerRule:
Type: AWS::ElasticLoadBalancingV2::ListenerRule
DependsOn: ECSApplicationLoadBalancerListener
Properties:
Actions:
- Type: forward
TargetGroupArn: !Ref "ECSApplicationLoadBalancerTargetGroup"
Conditions:
- Field: path-pattern
Values: [/]
ListenerArn: !Ref "ECSApplicationLoadBalancerListener"
Priority: 1
ECSApplicationLoadBalancerTargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
DependsOn: ECSApplicationLoadBalancer
Properties:
HealthCheckIntervalSeconds: 10
HealthCheckPath: /
HealthCheckProtocol: HTTP
HealthCheckTimeoutSeconds: 5
HealthyThresholdCount: 2
Name: RouletteTargetGroup
Port: 80
Protocol: HTTP
UnhealthyThresholdCount: 2
VpcId: !Ref "VpcId"
# DNS
DNSRecord:
Type: AWS::Route53::RecordSet
Properties:
HostedZoneName: !Join ["", [!Ref HostedZoneName, .]]
Name: !Join ["", [!Ref Subdomain, ., !Ref HostedZoneName, .]]
Type: A
AliasTarget:
DNSName: !GetAtt ECSApplicationLoadBalancer.DNSName
HostedZoneId: !GetAtt ECSApplicationLoadBalancer.CanonicalHostedZoneID
Outputs:
ECSApplicationLoadBalancerDNS:
Description: Your Application Load Balancer DNS
Value: !Join ["", [!GetAtt [ECSApplicationLoadBalancer, DNSName]]]
Endpoint:
Description: Endpoint
Value: !Join ["", ["https://", !Ref DNSRecord]]