This repository has been archived by the owner on May 26, 2023. It is now read-only.
forked from aws-samples/amazon-ecs-mythicalmysfits-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.yml
538 lines (505 loc) · 16.9 KB
/
core.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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
---
AWSTemplateFormatVersion: '2010-09-09'
Description: This stack deploys the core network infrastructure and IAM resources
to be used for a service hosted in Amazon ECS using AWS Fargate.
Parameters:
SkipBucket:
Type: String
Default: "false"
AllowedValues:
- "true"
- "false"
Conditions:
MakeBucket:
Fn::Equals: ["false", !Ref SkipBucket]
Mappings:
# Hard values for the subnet masks. These masks define
# the range of internal IP addresses that can be assigned.
# The VPC can have all IP's from 10.0.0.0 to 10.0.255.255
# There are four subnets which cover the ranges:
#
# 10.0.0.0 - 10.0.0.255
# 10.0.1.0 - 10.0.1.255
# 10.0.2.0 - 10.0.2.255
# 10.0.3.0 - 10.0.3.255
#
# If you need more IP addresses (perhaps you have so many
# instances that you run out) then you can customize these
# ranges to add more
SubnetConfig:
VPC:
CIDR: '10.0.0.0/16'
PublicOne:
CIDR: '10.0.0.0/24'
PublicTwo:
CIDR: '10.0.1.0/24'
PrivateOne:
CIDR: '10.0.2.0/24'
PrivateTwo:
CIDR: '10.0.3.0/24'
Resources:
MythicalBucket:
Type: AWS::S3::Bucket
Condition: MakeBucket
Properties:
# AccessControl: PublicRead
WebsiteConfiguration:
IndexDocument: index.html
ErrorDocument: error.html
Mono:
Type: AWS::ECR::Repository
Like:
Type: AWS::ECR::Repository
MythicalEcsCluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: !Sub Cluster-${AWS::StackName}
MythicalMonolithLogGroup:
Type: AWS::Logs::LogGroup
MythicalMonolithTaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
Cpu: 256
ExecutionRoleArn: !GetAtt EcsServiceRole.Arn
Family: !Sub Monolith-Definition-${AWS::StackName}
Memory: 512
NetworkMode: awsvpc
RequiresCompatibilities:
- FARGATE
TaskRoleArn: !GetAtt ECSTaskRole.Arn
ContainerDefinitions:
- Name: monolith-service
Image: nginx:latest
PortMappings:
- ContainerPort: 80
Protocol: http
Environment:
- Name: UPSTREAM_URL
Value: !GetAtt MythicalLoadBalancer.DNSName
- Name: DDB_TABLE_NAME
Value: !Ref MythicalDynamoTable
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-group: !Ref MythicalMonolithLogGroup
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: awslogs-mythicalmysfits-service
Essential: true
MythicalLoadBalancerSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupName: !Sub SecurityGroup-${AWS::StackName}
GroupDescription: Access to the load balancer
VpcId: !Ref 'VPC'
SecurityGroupIngress:
# Allow access to ALB from anywhere on the internet
- IpProtocol: tcp
FromPort: 80
ToPort: 80
CidrIp: 0.0.0.0/0
MythicalLoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Name: !Sub alb-${AWS::StackName}
Scheme: internet-facing
Type: application
SecurityGroups:
- !Ref MythicalLoadBalancerSecurityGroup
Subnets:
- !Ref PublicSubnetOne
- !Ref PublicSubnetTwo
MythicalListener:
Type: AWS::ElasticLoadBalancingV2::Listener
Properties:
DefaultActions:
- TargetGroupArn: !Ref MythicalMonolithTargetGroup
Type: forward
LoadBalancerArn: !Ref MythicalLoadBalancer
Port: 80
Protocol: HTTP
MythicalMonolithTargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
Properties:
HealthCheckIntervalSeconds: 10
HealthCheckPath: /
HealthCheckProtocol: HTTP
HealthyThresholdCount: 3
UnhealthyThresholdCount: 3
Port: 80
Protocol: HTTP
VpcId: !Ref VPC
TargetType: ip
MythicalMonolithService:
Type: AWS::ECS::Service
DependsOn: MythicalListener
Properties:
Cluster: !Ref MythicalEcsCluster
DeploymentConfiguration:
MinimumHealthyPercent: 0
MaximumPercent: 200
DesiredCount: 1
LaunchType: FARGATE
LoadBalancers:
- ContainerName: monolith-service
ContainerPort: 80
TargetGroupArn: !Ref MythicalMonolithTargetGroup
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: DISABLED
SecurityGroups:
- !Ref FargateContainerSecurityGroup
Subnets:
- !Ref PrivateSubnetOne
- !Ref PrivateSubnetTwo
TaskDefinition: !Ref MythicalMonolithTaskDefinition
# VPC in which containers will be networked.
# It has two public subnets, and two private subnets.
# We distribute the subnets across the first two available subnets
# for the region, for high availability.
VPC:
Type: AWS::EC2::VPC
Properties:
EnableDnsSupport: true
EnableDnsHostnames: true
CidrBlock: !FindInMap ['SubnetConfig', 'VPC', 'CIDR']
Tags:
- Key: Name
Value: !Sub Mysfits-VPC-${AWS::StackName}
# Two public subnets, where a public load balancer will later be created.
PublicSubnetOne:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone:
Fn::Select:
- 0
- Fn::GetAZs: {Ref: 'AWS::Region'}
VpcId: !Ref 'VPC'
CidrBlock: !FindInMap ['SubnetConfig', 'PublicOne', 'CIDR']
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value: !Sub MysfitsPublicOne-${AWS::StackName}
PublicSubnetTwo:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone:
Fn::Select:
- 1
- Fn::GetAZs: {Ref: 'AWS::Region'}
VpcId: !Ref 'VPC'
CidrBlock: !FindInMap ['SubnetConfig', 'PublicTwo', 'CIDR']
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value: !Sub MysfitsPublicTwo-${AWS::StackName}
# Two private subnets where containers will only have private
# IP addresses, and will only be reachable by other members of the
# VPC
PrivateSubnetOne:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone:
Fn::Select:
- 0
- Fn::GetAZs: {Ref: 'AWS::Region'}
VpcId: !Ref 'VPC'
CidrBlock: !FindInMap ['SubnetConfig', 'PrivateOne', 'CIDR']
Tags:
- Key: Name
Value: !Sub MysfitsPrivateOne-${AWS::StackName}
PrivateSubnetTwo:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone:
Fn::Select:
- 1
- Fn::GetAZs: {Ref: 'AWS::Region'}
VpcId: !Ref 'VPC'
CidrBlock: !FindInMap ['SubnetConfig', 'PrivateTwo', 'CIDR']
Tags:
- Key: Name
Value: !Sub MysfitsPrivateTwo-${AWS::StackName}
# Setup networking resources for the public subnets.
InternetGateway:
Type: AWS::EC2::InternetGateway
GatewayAttachement:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
VpcId: !Ref 'VPC'
InternetGatewayId: !Ref 'InternetGateway'
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref 'VPC'
PublicRoute:
Type: AWS::EC2::Route
DependsOn: GatewayAttachement
Properties:
RouteTableId: !Ref 'PublicRouteTable'
DestinationCidrBlock: '0.0.0.0/0'
GatewayId: !Ref 'InternetGateway'
PublicSubnetOneRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PublicSubnetOne
RouteTableId: !Ref PublicRouteTable
PublicSubnetTwoRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PublicSubnetTwo
RouteTableId: !Ref PublicRouteTable
# Setup networking resources for the private subnets. Containers
# in these subnets have only private IP addresses, and must use a NAT
# gateway to talk to the internet. We launch two NAT gateways, one for
# each private subnet.
NatGatewayOneAttachment:
Type: AWS::EC2::EIP
DependsOn: GatewayAttachement
Properties:
Domain: vpc
NatGatewayTwoAttachment:
Type: AWS::EC2::EIP
DependsOn: GatewayAttachement
Properties:
Domain: vpc
NatGatewayOne:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayOneAttachment.AllocationId
SubnetId: !Ref PublicSubnetOne
NatGatewayTwo:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayTwoAttachment.AllocationId
SubnetId: !Ref PublicSubnetTwo
PrivateRouteTableOne:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref 'VPC'
PrivateRouteOne:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PrivateRouteTableOne
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGatewayOne
PrivateRouteTableOneAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTableOne
SubnetId: !Ref PrivateSubnetOne
PrivateRouteTableTwo:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref 'VPC'
PrivateRouteTwo:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PrivateRouteTableTwo
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGatewayTwo
PrivateRouteTableTwoAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTableTwo
SubnetId: !Ref PrivateSubnetTwo
# VPC Endpoint for DynamoDB
# If a container needs to access DynamoDB (coming in module 3) this
# allows a container in the private subnet to talk to DynamoDB directly
# without needing to go via the NAT gateway.
DynamoDBEndpoint:
Type: AWS::EC2::VPCEndpoint
Properties:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: "*"
Principal: "*"
Resource: "*"
RouteTableIds:
- !Ref 'PrivateRouteTableOne'
- !Ref 'PrivateRouteTableTwo'
ServiceName: !Join [ "", [ "com.amazonaws.", { "Ref": "AWS::Region" }, ".dynamodb" ] ]
VpcId: !Ref 'VPC'
# The security group for our service containers to be hosted in Fargate.
# Even though traffic from users will pass through a Network Load Balancer,
# that traffic is purely TCP passthrough, without security group inspection.
# Therefore, we will allow for traffic from the Internet to be accepted by our
# containers. But, because the containers will only have Private IP addresses,
# the only traffic that will reach the containers is traffic that is routed
# to them by the public load balancer on the specific ports that we configure.
FargateContainerSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Access to the fargate containers from the Internet
VpcId: !Ref 'VPC'
SecurityGroupIngress:
# Allow access to NLB from anywhere on the internet
- CidrIp: !FindInMap ['SubnetConfig', 'VPC', 'CIDR']
IpProtocol: -1
# 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.
EcsServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service:
- ecs.amazonaws.com
- ecs-tasks.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'
# Rules which allow ECS to run tasks that have IAM roles assigned to them.
- 'iam:PassRole'
# Rules that let ECS interact with container images.
- 'ecr:GetAuthorizationToken'
- 'ecr:BatchCheckLayerAvailability'
- 'ecr:GetDownloadUrlForLayer'
- 'ecr:BatchGetImage'
# Rules that let ECS create and push logs to CloudWatch.
- 'logs:DescribeLogStreams'
- 'logs:CreateLogStream'
- 'logs:CreateLogGroup'
- 'logs:PutLogEvents'
Resource: '*'
# This is a role which is used by the ECS tasks. Tasks in Amazon ECS define
# the containers that should be deployed togehter and the resources they
# require from a compute/memory perspective. So, the policies below will define
# the IAM permissions that our Mythical Mysfits docker containers will have.
# If you attempted to write any code for the Mythical Mysfits service that
# interacted with different AWS service APIs, these roles would need to include
# those as allowed actions.
ECSTaskRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service:
- ecs-tasks.amazonaws.com
# Also add EC2 for testing in Cloud9
- ec2.amazonaws.com
Action: ['sts:AssumeRole']
Path: /
Policies:
- PolicyName: AmazonECSTaskRolePolicy
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:CreateLogStream'
- 'logs:CreateLogGroup'
- 'logs:PutLogEvents'
Resource: '*'
- Effect: Allow
Action:
# Allows the ECS tasks to interact with only the MysfitsTable
# in DynamoDB
- 'dynamodb:Scan'
- 'dynamodb:Query'
- 'dynamodb:UpdateItem'
- 'dynamodb:GetItem'
Resource: !GetAtt MythicalDynamoTable.Arn
MythicalProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Roles:
- !Ref ECSTaskRole
MythicalDynamoTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: !Sub Table-${AWS::StackName}
AttributeDefinitions:
- AttributeName: MysfitId
AttributeType: S
- AttributeName: GoodEvil
AttributeType: S
- AttributeName: LawChaos
AttributeType: S
GlobalSecondaryIndexes:
- IndexName: LawChaosIndex
KeySchema:
- AttributeName: LawChaos
KeyType: HASH
- AttributeName: MysfitId
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
- IndexName: GoodEvilIndex
KeySchema:
- AttributeName: GoodEvil
KeyType: HASH
- AttributeName: MysfitId
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
KeySchema:
- AttributeName: MysfitId
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
MythicalEnvironment:
Type: AWS::Cloud9::EnvironmentEC2
Properties:
AutomaticStopTimeMinutes: 30
InstanceType: t2.small
Name: !Sub Project-${AWS::StackName}
SubnetId: !Ref PublicSubnetOne
Outputs:
LoadBalancerDNS:
Description: The DNS for the load balancer
Value: !GetAtt MythicalLoadBalancer.DNSName
DynamoTable:
Value: !Ref MythicalDynamoTable
SiteBucket:
Value: !Ref MythicalBucket
Condition: MakeBucket
Cloud9Env:
Value:
!Join ["",["https://",!Ref "AWS::Region",".console.aws.amazon.com/cloud9/ide/",!Ref MythicalEnvironment,"?region=",!Ref "AWS::Region"]]
ProfileName:
Value: !Ref MythicalProfile
S3WebsiteURL:
Description: This is the DNS name of your S3 site
Value: !GetAtt MythicalBucket.WebsiteURL