-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIslandVPC-3Pub6Priv.yaml
523 lines (522 loc) · 17.6 KB
/
IslandVPC-3Pub6Priv.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
513
514
515
516
517
518
519
520
521
522
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
OwnerTag:
Type: String
Default: "FirstName LastName"
Description: "Enter your name for the resource tags."
ProjectTag:
Type: String
Default: "Integration Project"
Description: "Enter the project name for the resource tags."
DeptTag:
Type: String
Default: "Department"
Description: "Enter your department for the resource tags."
NameTag:
Type: String
Default: "testpoc"
Description: "Enter the prefix for the name tag. (e.g. VPC will have Name tag value of [NameTag]-vpc)"
VPCCIDR:
Type: String
Default: "10.17.0.0/16"
Description: "Enter a CIDR block for the island VPC."
PublicSubnet1CIDR:
Type: String
Default: "10.17.0.0/20"
Description: "Enter a CIDR block for Public Subnet 1."
PublicSubnet2CIDR:
Type: String
Default: "10.17.16.0/20"
Description: "Enter a CIDR block for Public Subnet 2."
PublicSubnet3CIDR:
Type: String
Default: "10.17.32.0/20"
Description: "Enter a CIDR block for Public Subnet 3."
PrivateSubnet1CIDR:
Type: String
Default: "10.17.48.0/20"
Description: "Enter a CIDR block for Private Subnet 1."
PrivateSubnet2CIDR:
Type: String
Default: "10.17.64.0/20"
Description: "Enter a CIDR block for Private Subnet 2."
PrivateSubnet3CIDR:
Type: String
Default: "10.17.80.0/20"
Description: "Enter a CIDR block for Private Subnet 3."
PrivateSubnet4CIDR:
Type: String
Default: "10.17.96.0/20"
Description: "Enter a CIDR block for Private Subnet 4."
PrivateSubnet5CIDR:
Type: String
Default: "10.17.112.0/20"
Description: "Enter a CIDR block for Private Subnet 5."
PrivateSubnet6CIDR:
Type: String
Default: "10.17.128.0/20"
Description: "Enter a CIDR block for Private Subnet 6."
Description: "VPC island with three public subnets and six private subnets across three AZ's. This also creates an SSM Role and SSM Instance Profile for any EC2 instances. The Public subnets have SSM interface endpoints and the Private subnets have an S3 gateway endpoint."
Resources:
VPC:
Type: "AWS::EC2::VPC"
Properties:
CidrBlock: !Ref VPCCIDR
EnableDnsSupport: true
EnableDnsHostnames: true
InstanceTenancy: "default"
Tags:
-
Key: "Owner"
Value: !Ref OwnerTag
-
Key: "Project"
Value: !Ref ProjectTag
-
Key: "Dept"
Value: !Ref DeptTag
-
Key: "Name"
Value: !Sub "${NameTag}-vpc"
InternetGateway:
Type: "AWS::EC2::InternetGateway"
Properties:
Tags:
-
Key: "Owner"
Value: !Ref OwnerTag
-
Key: "Project"
Value: !Ref ProjectTag
-
Key: "Dept"
Value: !Ref DeptTag
-
Key: "Name"
Value: !Sub "${NameTag}-igw"
InternetGatewayAttachment:
Type: 'AWS::EC2::VPCGatewayAttachment'
Properties:
VpcId: !Ref VPC
InternetGatewayId: !Ref InternetGateway
RouteTablePublic:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Owner"
Value: !Ref OwnerTag
-
Key: "Project"
Value: !Ref ProjectTag
-
Key: "Dept"
Value: !Ref DeptTag
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-public"
RouteTablePrivate1:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv1"
RouteTablePrivate2:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv2"
RouteTablePrivate3:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv3"
RouteTablePrivate4:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv4"
RouteTablePrivate5:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv5"
RouteTablePrivate6:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-rtb-priv6"
RouteTablePublicDefaultIPv4:
Type: "AWS::EC2::Route"
DependsOn: InternetGatewayAttachment
Properties:
DestinationCidrBlock: "0.0.0.0/0"
GatewayId: !Ref InternetGateway
RouteTableId: !Ref RouteTablePublic
RouteTableAssociationPublic1:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePublic
SubnetId: !Ref PublicSubnet1
RouteTableAssociationPublic2:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePublic
SubnetId: !Ref PublicSubnet2
RouteTableAssociationPublic3:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePublic
SubnetId: !Ref PublicSubnet3
PublicSubnet1:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 0, !GetAZs '' ]
CidrBlock: !Ref PublicSubnet1CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-pubsn1"
PublicSubnet2:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 1, !GetAZs '' ]
CidrBlock: !Ref PublicSubnet2CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-pubsn2"
PublicSubnet3:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 2, !GetAZs '' ]
CidrBlock: !Ref PublicSubnet3CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-pubsn3"
PrivateSubnet1:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 0, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet1CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn1"
PrivateSubnet2:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 1, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet2CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn2"
PrivateSubnet3:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 2, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet3CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn3"
PrivateSubnet4:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 0, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet4CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn4"
PrivateSubnet5:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 1, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet5CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn5"
PrivateSubnet6:
Type: "AWS::EC2::Subnet"
Properties:
AvailabilityZone: !Select [ 2, !GetAZs '' ]
CidrBlock: !Ref PrivateSubnet6CIDR
VpcId: !Ref VPC
MapPublicIpOnLaunch: false
Tags:
-
Key: "Name"
Value: !Sub "${NameTag}-privsn6"
VPCEndpointS3:
Type: "AWS::EC2::VPCEndpoint"
Properties:
VpcEndpointType: "Gateway"
VpcId: !Ref VPC
ServiceName: !Sub "com.amazonaws.${AWS::Region}.s3"
PolicyDocument: "{\"Version\":\"2008-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":\"*\",\"Action\":\"*\",\"Resource\":\"*\"}]}"
RouteTableIds:
- !Ref RouteTablePrivate1
- !Ref RouteTablePrivate2
- !Ref RouteTablePrivate3
- !Ref RouteTablePrivate4
- !Ref RouteTablePrivate5
- !Ref RouteTablePrivate6
PrivateDnsEnabled: false
VPCEndpointSSM:
Type: "AWS::EC2::VPCEndpoint"
Properties:
VpcEndpointType: "Interface"
VpcId: !Ref VPC
ServiceName: !Sub "com.amazonaws.${AWS::Region}.ssm"
PolicyDocument: |
{
"Statement": [
{
"Action": "*",
"Effect": "Allow",
"Principal": "*",
"Resource": "*"
}
]
}
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
- !Ref PublicSubnet3
PrivateDnsEnabled: true
SecurityGroupIds:
- !Ref InstanceSecurityGroup
VPCEndpointEC2Messages:
Type: "AWS::EC2::VPCEndpoint"
Properties:
VpcEndpointType: "Interface"
VpcId: !Ref VPC
ServiceName: !Sub "com.amazonaws.${AWS::Region}.ec2messages"
PolicyDocument: |
{
"Statement": [
{
"Action": "*",
"Effect": "Allow",
"Principal": "*",
"Resource": "*"
}
]
}
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
- !Ref PublicSubnet3
PrivateDnsEnabled: true
SecurityGroupIds:
- !Ref InstanceSecurityGroup
VPCEndpointSSMMessages:
Type: "AWS::EC2::VPCEndpoint"
Properties:
VpcEndpointType: "Interface"
VpcId: !Ref VPC
ServiceName: !Sub "com.amazonaws.${AWS::Region}.ssmmessages"
PolicyDocument: |
{
"Statement": [
{
"Action": "*",
"Effect": "Allow",
"Principal": "*",
"Resource": "*"
}
]
}
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
- !Ref PublicSubnet3
PrivateDnsEnabled: true
SecurityGroupIds:
- !Ref InstanceSecurityGroup
VPCGatewayAttachment:
Type: "AWS::EC2::VPCGatewayAttachment"
Properties:
InternetGatewayId: !Ref InternetGateway
VpcId: !Ref VPC
RouteTableAssociationPrivate1:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate1
SubnetId: !Ref PrivateSubnet1
RouteTableAssociationPrivate2:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate2
SubnetId: !Ref PrivateSubnet2
RouteTableAssociationPrivate3:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate3
SubnetId: !Ref PrivateSubnet3
RouteTableAssociationPrivate4:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate4
SubnetId: !Ref PrivateSubnet4
RouteTableAssociationPrivate5:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate5
SubnetId: !Ref PrivateSubnet5
RouteTableAssociationPrivate6:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
RouteTableId: !Ref RouteTablePrivate6
SubnetId: !Ref PrivateSubnet6
InstanceSecurityGroup:
Type: "AWS::EC2::SecurityGroup"
Properties:
GroupDescription: !Sub "${NameTag} Security Group"
GroupName: !Sub "${NameTag}-sg"
SecurityGroupIngress:
- Description: 'Allow SSH IPv4 IN'
IpProtocol: tcp
FromPort: '22'
ToPort: '22'
CidrIp: '0.0.0.0/0'
Tags:
-
Key: "Dept"
Value: !Ref DeptTag
-
Key: "Owner"
Value: !Ref OwnerTag
-
Key: "Project"
Value: !Ref ProjectTag
-
Key: "Name"
Value: !Sub "${NameTag}-sg"
VpcId: !Ref VPC
InstanceSecurityGroupIngressTCP:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref InstanceSecurityGroup
SourceSecurityGroupId: !Ref InstanceSecurityGroup
SourceSecurityGroupOwnerId: !Ref AWS::AccountId
FromPort: 0
IpProtocol: "tcp"
ToPort: 65535
InstanceSecurityGroupIngressUDP:
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref InstanceSecurityGroup
SourceSecurityGroupId: !Ref InstanceSecurityGroup
SourceSecurityGroupOwnerId: !Ref AWS::AccountId
FromPort: 0
IpProtocol: "udp"
ToPort: 65535
InstanceSecurityGroupEgress:
Type: AWS::EC2::SecurityGroupEgress
Properties:
CidrIp: "0.0.0.0/0"
IpProtocol: "-1"
GroupId: !GetAtt InstanceSecurityGroup.GroupId
SSMRole:
Type: "AWS::IAM::Role"
Properties:
Path: "/"
RoleName: !Sub "${NameTag}-SSM-Role"
AssumeRolePolicyDocument: "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Effect\":\"Allow\",\"Principal\":{\"Service\":\"ec2.amazonaws.com\"},\"Action\":\"sts:AssumeRole\"}]}"
MaxSessionDuration: 3600
Policies:
- PolicyName: root
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'ssm:DescribeAssociation'
- 'ssm:GetDeployablePatchSnapshotForInstance'
- 'ssm:GetDocument'
- 'ssm:DescribeDocument'
- 'ssm:GetManifest'
- 'ssm:GetParameter'
- 'ssm:GetParameters'
- 'ssm:ListAssociations'
- 'ssm:ListInstanceAssociations'
- 'ssm:PutInventory'
- 'ssm:PutComplianceItems'
- 'ssm:PutConfigurePackageResult'
- 'ssm:UpdateAssociationStatus'
- 'ssm:UpdateInstanceAssociationStatus'
- 'ssm:UpdateInstanceInformation'
Resource: '*'
- Effect: Allow
Action:
- 'ssmmessages:CreateControlChannel'
- 'ssmmessages:CreateDataChannel'
- 'ssmmessages:OpenControlChannel'
- 'ssmmessages:OpenDataChannel'
Resource: '*'
- Effect: Allow
Action:
- 'ec2messages:AcknowledgeMessage'
- 'ec2messages:DeleteMessage'
- 'ec2messages:FailMessage'
- 'ec2messages:GetEndpoint'
- 'ec2messages:GetMessages'
- 'ec2messages:SendReply'
Resource: '*'
Description: "Allows EC2 instances to call AWS services on your behalf."
Tags:
-
Key: "Dept"
Value: !Ref DeptTag
-
Key: "Project"
Value: !Ref ProjectTag
-
Key: "Owner"
Value: !Ref OwnerTag
SSMInstanceProfile:
Type: "AWS::IAM::InstanceProfile"
Properties:
Path: "/"
InstanceProfileName: !Ref SSMRole
Roles:
- !Ref SSMRole