-
Notifications
You must be signed in to change notification settings - Fork 0
/
infrastructure.yaml
512 lines (449 loc) · 13.5 KB
/
infrastructure.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
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
AWSTemplateFormatVersion: 2010-09-09
Description: Basic VPC Infrastructure
Parameters:
Vpccidr:
Description: Please enter the IP range (CIDR notation) for the VPC
Type: String
Default: 10.0.0.0/16
PublicSubnetAcidr:
Description: Please enter the IP range (CIDR notation) for the public subnet in the first Availability Zone
Type: String
Default: 10.0.0.0/24
PublicSubnetBcidr:
Description: Please enter the IP range (CIDR notation) for the public subnet in the second Availability Zone
Type: String
Default: 10.0.1.0/24
PrivateSubnetAcidr:
Description: Please enter the IP range (CIDR notation) for the private subnet in the first Availability Zone
Type: String
Default: 10.0.2.0/24
PrivateSubnetBcidr:
Description: Please enter the IP range (CIDR notation) for the private subnet in the second Availability Zone
Type: String
Default: 10.0.3.0/24
PrivateSubnetAcidr:
Description: Please enter the IP range (CIDR notation) for the private subnet in the first Availability Zone
Type: String
Default: 10.0.4.0/24
PrivateSubnetBcidr:
Description: Please enter the IP range (CIDR notation) for the private subnet in the second Availability Zone
Type: String
Default: 10.0.5.0/24
ProtectedSubnetAcidr:
Description: Please enter the IP range (CIDR notation) for the protected subnet in the first Availability Zone
Type: String
Default: 10.0.6.0/24
ProtectedSubnetBcidr:
Description: Please enter the IP range (CIDR notation) for the protected subnet in the second Availability Zone
Type: String
Default: 10.0.7.0/24
EnvironmentName:
Description: Unique name to distinguish different web application min chars 1 and max chars 4
Type: String
MinLength: 1
MaxLength: 4
Resources:
# ECS Cluster
StreamlitCluster:
Type: AWS::ECS::Cluster
DependsOn: StreamlitECSRoleCustomResource
Properties:
ClusterName: !Join ['-', ['StreamlitCluster', !Ref EnvironmentName]]
# Logs Policy
LogsPolicy:
Type: "AWS::IAM::ManagedPolicy"
Properties:
ManagedPolicyName: 'LogsPolicy'
Path: /
ManagedPolicyName: !Sub "LogsPolicy${EnvironmentName}"
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Action:
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- 'logs:PutRetentionPolicy'
Resource: '*'
# Log Bucket
LoggingBucket:
Type: "AWS::S3::Bucket"
DeletionPolicy: Retain
Properties:
OwnershipControls:
Rules:
- ObjectOwnership: BucketOwnerPreferred
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
LoggingBucketPolicy:
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket: !Ref LoggingBucket
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 's3:PutObject'
Effect: Allow
Principal:
Service: logging.s3.amazonaws.com
Resource:
- !Sub arn:aws:s3:::${LoggingBucket}/*
# VPC
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: !Ref Vpccidr
EnableDnsSupport: true
EnableDnsHostnames: true
Tags:
- Key: Name
Value: 'VPC'
VPCLogGroup:
DeletionPolicy: Retain
Type: 'AWS::Logs::LogGroup'
Properties:
RetentionInDays: 7
VPCLogRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service: vpc-flow-logs.amazonaws.com
Action: sts:AssumeRole
ManagedPolicyArns:
- !GetAtt LogsPolicy.PolicyArn
VPCFlowLog:
Type: "AWS::EC2::FlowLog"
Properties:
ResourceId: !Ref VPC
ResourceType: VPC
TrafficType: ALL
LogGroupName: !Ref VPCLogGroup
DeliverLogsPermissionArn: !GetAtt VPCLogRole.Arn
# Internet Gateway
InternetGateway:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- Key: Name
Value: InternetGateway
InternetGatewayAttachment:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
InternetGatewayId: !Ref InternetGateway
VpcId: !Ref VPC
# Create a Subnet
PublicSubnetA:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: !Ref PublicSubnetAcidr
VpcId: !Ref VPC
AvailabilityZone: !Select
- 0
- Fn::GetAZs: !Ref 'AWS::Region'
Tags:
- Key: Name
Value: PublicSubnetA
PublicSubnetB:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: !Ref PublicSubnetBcidr
VpcId: !Ref VPC
AvailabilityZone: !Select
- 1
- Fn::GetAZs: !Ref 'AWS::Region'
Tags:
- Key: Name
Value: PublicSubnetB
PrivateSubnetA:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: !Ref PrivateSubnetAcidr
VpcId: !Ref VPC
AvailabilityZone: !Select
- 0
- Fn::GetAZs: !Ref 'AWS::Region'
Tags:
- Key: Name
Value: PrivateSubnetA
PrivateSubnetB:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: !Ref PrivateSubnetBcidr
VpcId: !Ref VPC
AvailabilityZone: !Select
- 1
- Fn::GetAZs: !Ref 'AWS::Region'
Tags:
- Key: Name
Value: PrivateSubnetB
ProtectedSubnetA:
Type: AWS::EC2::Subnet
Properties:
VpcId: !Ref VPC
AvailabilityZone: !Select
- 0
- Fn::GetAZs: !Ref 'AWS::Region'
CidrBlock: !Ref ProtectedSubnetAcidr
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: ProtectedSubnetA
ProtectedSubnetB:
Type: AWS::EC2::Subnet
Properties:
VpcId: !Ref VPC
AvailabilityZone: !Select
- 1
- Fn::GetAZs: !Ref 'AWS::Region'
CidrBlock: !Ref ProtectedSubnetBcidr
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: ProtectedSubnetB
# NAT Gateway
NatGatewayAEIP:
Type: AWS::EC2::EIP
DependsOn: InternetGatewayAttachment
Properties:
Domain: vpc
NatGatewayBEIP:
Type: AWS::EC2::EIP
DependsOn: InternetGatewayAttachment
Properties:
Domain: vpc
NatGatewayA:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayAEIP.AllocationId
SubnetId: !Ref PublicSubnetA
NatGatewayB:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayBEIP.AllocationId
SubnetId: !Ref PublicSubnetB
# Public Route Table
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: PublicRouteTable
DefaultPublicRoute:
Type: AWS::EC2::Route
DependsOn: InternetGatewayAttachment
Properties:
RouteTableId: !Ref PublicRouteTable
DestinationCidrBlock: 0.0.0.0/0
GatewayId: !Ref InternetGateway
PublicSubnetARouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnetA
PublicSubnetBRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnetB
# Private Route Table
PrivateRouteTableA:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: PrivateRouteTableA
DefaultPrivateRouteA:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PrivateRouteTableA
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGatewayA
PrivateSubnetARouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTableA
SubnetId: !Ref PrivateSubnetA
PrivateRouteTableB:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: PrivateRouteTableB
DefaultPrivateRouteB:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PrivateRouteTableB
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGatewayB
PrivateSubnetBRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTableB
SubnetId: !Ref PrivateSubnetB
# Protected Route Table
ProtectedRouteTableA:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: ProtectedRouteTableA
ProtectedSubnetARouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref ProtectedRouteTableA
SubnetId: !Ref ProtectedSubnetA
ProtectedRouteTableB:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: ProtectedRouteTableB
ProtectedSubnetBRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref ProtectedRouteTableB
SubnetId: !Ref ProtectedSubnetB
# Custom ECS resource
StreamlitECSRoleCustomResourceRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Join ['-', ['ECSCustomRole', !Sub '${AWS::StackName}']]
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: "/"
ManagedPolicyArns:
- !GetAtt LogsPolicy.PolicyArn
Policies:
- PolicyName: IAMPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- iam:ListRoles
Resource:
- "*"
- Effect: Allow
Action:
- iam:GetRole
- iam:CreateServiceLinkedRole
- iam:AttachRolePolicy
Resource:
- "*"
StreamlitECSRoleCustomResourceFunction:
Type: "AWS::Lambda::Function"
Properties:
FunctionName: !Join ['-', ['ECSCustomF', !Sub '${AWS::StackName}']]
Handler: index.handler
Role: !GetAtt StreamlitECSRoleCustomResourceRole.Arn
Timeout: 300
Runtime: python3.12
Code:
ZipFile: !Sub |
import boto3
from botocore.exceptions import ClientError
import cfnresponse
iam_client = boto3.client('iam')
def handler(event, context):
try:
request_type = event['RequestType']
print(request_type)
if request_type == 'Create':
desired_role_name = "AWSServiceRoleForECS"
try:
iam_client.get_role(RoleName=desired_role_name)
role_exists = True
except ClientError as e:
if e.response['Error']['Code'] == 'NoSuchEntity':
role_exists = False
else:
role_exists = True
print(role_exists)
if not role_exists:
iam_client.create_service_linked_role(AWSServiceName="ecs.amazonaws.com")
except Exception as ex:
print(ex)
cfnresponse.send(event, context, cfnresponse.FAILED, {})
else:
cfnresponse.send(event, context, cfnresponse.SUCCESS, {})
StreamlitECSRoleCustomResource:
Type: Custom::ECSRole
Properties:
ServiceToken: !GetAtt StreamlitECSRoleCustomResourceFunction.Arn
Outputs:
VPC:
Description: "VPC"
Value: !Ref VPC
Export:
Name: Basic-VPC
LogsPolicy:
Description: "LogsPolicy"
Value: !GetAtt LogsPolicy.PolicyArn
Export:
Name: Basic-LogsPolicy
LoggingBucket:
Description: "LoggingBucket"
Value: !Ref LoggingBucket
Export:
Name: Basic-LoggingBucket
LoggingBucketPolicy:
Description: "LoggingBucketPolicy"
Value: !Ref LoggingBucketPolicy
Export:
Name: Basic-LoggingBucketPolicy
PublicSubnetA:
Description: "PublicSubnetA"
Value: !Ref PublicSubnetA
Export:
Name: Basic-PublicSubnetA
PublicSubnetB:
Description: "PublicSubnetB"
Value: !Ref PublicSubnetB
Export:
Name: Basic-PublicSubnetB
PrivateSubnetA:
Description: "PrivateSubnetA"
Value: !Ref PrivateSubnetA
Export:
Name: Basic-PrivateSubnetA
PrivateSubnetB:
Description: "PrivateSubnetB"
Value: !Ref PrivateSubnetB
Export:
Name: Basic-PrivateSubnetB
ProtectedSubnetA:
Description: "ProtectedSubnetA"
Value: !Ref ProtectedSubnetA
Export:
Name: Basic-ProtectedSubnetA
ProtectedSubnetB:
Description: "ProtectedSubnetB"
Value: !Ref ProtectedSubnetB
Export:
Name: Basic-ProtectedSubnetB
StreamlitCluster:
Description: "StreamlitCluster"
Value: !Ref StreamlitCluster
Export:
Name: StreamlitCluster