-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcfn-network.yaml
429 lines (379 loc) · 10.9 KB
/
cfn-network.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
AWSTemplateFormatVersion: 2010-09-09
Description: CloudFormation stack of a network with custom VPC, NACL, RTs, public & private SNs, SGs.
# References & Resources:
# https://docs.aws.amazon.com/vpc/latest/userguide/how-it-works.html
# https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html#VPC_Sizing
# https://docs.aws.amazon.com/vpc/latest/userguide/vpc-network-acls.html
# https://datatracker.ietf.org/doc/html/rfc1918
# https://aws.amazon.com/vpc/faqs/
Parameters:
sshSourceIpv4CidrBlock:
Description: CIDR block of IP v4 addresses from where SSH connections to Bastion are allowed
Type: String
Default: 0.0.0.0/0
# Find your IP at https://httpbin.org/ip or at www.google.com/search?q=what+is+my+ip
# and add "/32" to it for the CIDR block
vpcCidrBlock:
Description: CIDR block of the VPC's IP v4 addresses
Type: String
Default: 10.0.0.0/16
# RFC 1918 private IPs are recommended
Resources:
custVpc:
Type: AWS::EC2::VPC
Properties:
CidrBlock: !Ref vpcCidrBlock
Tags:
- Key: Name
Value: !Join ["-", [!Ref "AWS::StackName", "vpc"]]
custNacl:
Type: AWS::EC2::NetworkAcl
Properties:
VpcId: !Ref custVpc
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-nacl
allowInboundHttpRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: false # Default is false
NetworkAclId: !Ref custNacl
PortRange:
From: 80
To: 80
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 100
allowInboundHttpsRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
NetworkAclId: !Ref custNacl
PortRange:
From: 443
To: 443
Protocol: 6
RuleAction: allow
RuleNumber: 200
allowInboundSshRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: !Ref sshSourceIpv4CidrBlock
NetworkAclId: !Ref custNacl
PortRange:
From: 22
To: 22
Protocol: 6
RuleAction: allow
RuleNumber: 300
allowInboundIntraVpcSshRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: !Ref vpcCidrBlock
NetworkAclId: !Ref custNacl
PortRange:
From: 22
To: 22
Protocol: 6
RuleAction: allow
RuleNumber: 310
allowInboundResponsesToEphemeralPorts:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
NetworkAclId: !Ref custNacl
PortRange:
From: 1024
To: 65535
# These are ephemeral ports of NAT gateways & ELBs
# IANA, Linux & Unix ephemeral ports are all within this range
Protocol: 6
RuleAction: allow
RuleNumber: 400
allowOutboundResponsesToClientEphemeralPorts:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref custNacl
PortRange:
From: 32768
To: 65535
# This range includes IANA, Linux & Unix ephemeral ports
Protocol: 6
RuleAction: allow
RuleNumber: 100
allowOutboundHttpRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref custNacl
PortRange:
From: 80
To: 80
Protocol: 6
RuleAction: allow
RuleNumber: 200
allowOutboundHttpsRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref custNacl
PortRange:
From: 443
To: 443
Protocol: 6
RuleAction: allow
RuleNumber: 300
allowOutboundIntraVpcSshRequests:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: !Ref vpcCidrBlock
Egress: true
NetworkAclId: !Ref custNacl
PortRange:
From: 22
To: 22
Protocol: 6
RuleAction: allow
RuleNumber: 400
bastionSG:
Type: AWS::EC2::SecurityGroup
Properties:
GroupName: !Sub ${AWS::StackName}-sg-bastionSG
GroupDescription: Allow SSH from sshSourceIpv4CidrBlock IP addresses
VpcId: !Ref custVpc
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 22
ToPort: 22
CidrIp: !Ref sshSourceIpv4CidrBlock
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sg-bastion
adminSG:
Type: AWS::EC2::SecurityGroup
Properties:
GroupName: !Sub ${AWS::StackName}-adminSG
GroupDescription: Allow SSH from Bastion SG
VpcId: !Ref custVpc
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sg-admin
allowSshFromBastionSGToAdminSG:
Type: AWS::EC2::SecurityGroupIngress
Properties:
IpProtocol: tcp
FromPort: 22
ToPort: 22
SourceSecurityGroupId: !GetAtt bastionSG.GroupId
GroupId: !GetAtt adminSG.GroupId
webSG:
Type: AWS::EC2::SecurityGroup
Properties:
GroupName: !Sub ${AWS::StackName}-webSG
GroupDescription: Allow HTTP and HTTPS traffic from everywhere
VpcId: !Ref custVpc
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 80
ToPort: 80
CidrIp: 0.0.0.0/0
- IpProtocol: tcp
FromPort: 443
ToPort: 443
CidrIp: 0.0.0.0/0
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sg-web
igw:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-igw
attachIgwToCustVpc:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
VpcId: !Ref custVpc
InternetGatewayId: !Ref igw
publicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref custVpc
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-rt-public
addInternetRouteViaIgw:
DependsOn: attachIgwToCustVpc # Required for deterministic builds
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref publicRouteTable
DestinationCidrBlock: 0.0.0.0/0
GatewayId: !Ref igw
publicSubnet1:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [0, Fn::GetAZs: !Ref "AWS::Region"]
VpcId: !Ref custVpc
CidrBlock: !Select [0, !Cidr [!GetAtt custVpc.CidrBlock, 4, 8]]
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sn-public1
associatePublicSN1andNACL:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref custNacl
SubnetId: !Ref publicSubnet1
associatePublicSN1andRT:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref publicSubnet1
RouteTableId: !Ref publicRouteTable
natGwElasticIp1:
DependsOn: attachIgwToCustVpc # Required for deterministic builds
Type: AWS::EC2::EIP
Properties:
Domain: vpc
natGw1:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt natGwElasticIp1.AllocationId
SubnetId: !Ref publicSubnet1
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-natgw1
privateRouteTable1:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref custVpc
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-rt-private1
addPrivateRouteViaNatGw1:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref privateRouteTable1
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref natGw1
privateSubnet1:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [0, !GetAZs ]
# Default (missing) argument of GetAZs function is "AWS::Region"
# Space is mandatory after "!GetAZs" when the argument is omitted
VpcId: !Ref custVpc
CidrBlock: !Select [1, !Cidr [!GetAtt custVpc.CidrBlock, 4, 8]]
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sn-private1
associatePrivateSN1andNACL:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref custNacl
SubnetId: !Ref privateSubnet1
associatePrivateSN1andRT1:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref privateSubnet1
RouteTableId: !Ref privateRouteTable1
publicSubnet2:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [1, !GetAZs ]
VpcId: !Ref custVpc
CidrBlock: !Select [2, !Cidr [!GetAtt custVpc.CidrBlock, 4, 8]]
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sn-public2
associatePublicSN2andNACL:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref custNacl
SubnetId: !Ref publicSubnet2
associatePublicSN2andRT:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref publicSubnet2
RouteTableId: !Ref publicRouteTable
natGwElasticIp2:
DependsOn: attachIgwToCustVpc # Required for deterministic builds
Type: AWS::EC2::EIP
Properties:
Domain: vpc
natGw2:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt natGwElasticIp2.AllocationId
SubnetId: !Ref publicSubnet2
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-natgw2
privateRouteTable2:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref custVpc
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-rt-private2
addPrivateRouteViaNatGw2:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref privateRouteTable2
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref natGw2
privateSubnet2:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [1, !GetAZs ]
VpcId: !Ref custVpc
CidrBlock: !Select [3, !Cidr [!GetAtt custVpc.CidrBlock, 4, 8]]
Tags:
- Key: Name
Value: !Sub ${AWS::StackName}-sn-private2
associatePrivateSN2andNACL:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref custNacl
SubnetId: !Ref privateSubnet2
associatePrivateSN2andRT2:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref privateSubnet2
RouteTableId: !Ref privateRouteTable2
Outputs:
custVpcId:
Value: !Ref custVpc
Export:
Name: !Sub ${AWS::StackName}-custVpcId
bastionSgId:
Value: !Ref bastionSG
Export:
Name: !Sub ${AWS::StackName}-sg-bastion
adminSgId:
Value: !Ref adminSG
Export:
Name: !Sub ${AWS::StackName}-sg-admin
webSgId:
Value: !Ref webSG
Export:
Name: !Sub ${AWS::StackName}-sg-web
publicSubnet1Id:
Value: !Ref publicSubnet1
Export:
Name: !Sub ${AWS::StackName}-sn-public1
privateSubnet1Id:
Value: !Ref privateSubnet1
Export:
Name: !Sub ${AWS::StackName}-sn-private1
publicSubnet2Id:
Value: !Ref publicSubnet2
Export:
Name: !Sub ${AWS::StackName}-sn-public2
privateSubnet2Id:
Value: !Ref privateSubnet2
Export:
Name: !Sub ${AWS::StackName}-sn-private2