-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc.yml
297 lines (256 loc) · 6.8 KB
/
vpc.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
AWSTemplateFormatVersion: 2010-09-09
Description: VPC layer
Parameters:
VpcCIDR:
Description: CIDR block for the VPC
Type: String
Default: 10.0.0.0/16
PublicSubnet1CIDR:
Description: CIDR block for the public subnet 1 in AZ1
Type: String
Default: 10.0.0.0/24
PublicSubnet2CIDR:
Description: CIDR block for the public subnet 2 in AZ2
Type: String
Default: 10.0.1.0/24
PrivateSubnet1CIDR:
Description: CIDR block for the private subnet 1 in AZ1
Type: String
Default: 10.0.2.0/24
PrivateSubnet2CIDR:
Description: CIDR block for the private subnet 2 in AZ2
Type: String
Default: 10.0.3.0/24
PrivateSubnet3CIDR:
Description: CIDR block for the private subnet 3 in AZ1
Type: String
Default: 10.0.4.0/24
PrivateSubnet4CIDR:
Description: CIDR block for the private subnet 4 in AZ2
Type: String
Default: 10.0.5.0/24
Resources:
# VPC
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: !Ref VpcCIDR
EnableDnsHostnames: true
InstanceTenancy: default
Tags:
- Key: Name
Value: BattlemonVPC
# Internet Gateway
InternetGateway:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- Key: Name
Value: BattlemonInternetGateway
InternetGatewayAttachment:
Type: AWS::EC2::VPCGatewayAttachment
DependsOn: VPC
Properties:
InternetGatewayId: !Ref InternetGateway
VpcId: !Ref VPC
# Default public route
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: BattlemonPublicRoutes
DefaultPublicRoute:
Type: AWS::EC2::Route
DependsOn: InternetGatewayAttachment
Properties:
RouteTableId: !Ref PublicRouteTable
DestinationCidrBlock: 0.0.0.0/0
GatewayId: !Ref InternetGateway
# Public Subnet 1
PublicSubnet1:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 0, !GetAZs "" ]
CidrBlock: !Ref PublicSubnet1CIDR
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Name
Value: BattlemonPublicSubnet1
PublicSubnet1RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnet1
# Public Subnet 2
PublicSubnet2:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 1, !GetAZs "" ]
CidrBlock: !Ref PublicSubnet2CIDR
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Name
Value: BattlemonPublicSubnet2
PublicSubnet2RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnet2
# Private Subnet 1
PrivateSubnet1:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 0, !GetAZs "" ]
VpcId: !Ref VPC
CidrBlock: !Ref PrivateSubnet1CIDR
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: BattlemonPrivateSubnet1
- Key: Tier
Value: Backend
NatGatewayEIP1:
Type: AWS::EC2::EIP
DependsOn: InternetGatewayAttachment
Properties:
Domain: VPC
NatGateway1:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayEIP1.AllocationId
SubnetId: !Ref PublicSubnet1
Tags:
- Key: Name
Value: BattlemonNatGatewayPublicSubnet1
PrivateRouteTable1:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: BattlemonPrivateRoutes (AZ1)
DefaultPrivateRoute1:
Type: AWS::EC2::Route
Properties:
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGateway1
RouteTableId: !Ref PrivateRouteTable1
PrivateSubnet1RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PrivateSubnet1
RouteTableId: !Ref PrivateRouteTable1
# Private Subnet 2
PrivateSubnet2:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 1, !GetAZs "" ]
VpcId: !Ref VPC
CidrBlock: !Ref PrivateSubnet2CIDR
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: BattlemonPrivateSubnet2
- Key: Tier
Value: Backend
NatGatewayEIP2:
Type: AWS::EC2::EIP
DependsOn: InternetGatewayAttachment
Properties:
Domain: VPC
NatGateway2:
Type: AWS::EC2::NatGateway
Properties:
AllocationId: !GetAtt NatGatewayEIP2.AllocationId
SubnetId: !Ref PublicSubnet2
Tags:
- Key: Name
Value: BattlemonNatGatewayPublicSubnet2
PrivateRouteTable2:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: BattlemonPrivateRoutes (AZ2)
DefaultPrivateRoute2:
Type: AWS::EC2::Route
Properties:
RouteTableId: !Ref PrivateRouteTable2
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: !Ref NatGateway2
PrivateSubnet2RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTable2
SubnetId: !Ref PrivateSubnet2
# Private subnet 3 and 4
PrivateSubnet3:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 0, !GetAZs "" ]
VpcId: !Ref VPC
CidrBlock: !Ref PrivateSubnet3CIDR
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: BattlemonPrivateSubnet3
- Key: Tier
Value: Database
PrivateSubnet4:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Select [ 1, !GetAZs "" ]
VpcId: !Ref VPC
CidrBlock: !Ref PrivateSubnet4CIDR
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: BattlemonPrivateSubnet4
- Key: Tier
Value: Database
Outputs:
VpcId:
Value: !Ref VPC
Export:
Name: BattlemonVpcId
PublicSubnet1:
Value: !Ref PublicSubnet1
Export:
Name: BattlemonPublicSubnet1
PublicSubnet2:
Value: !Ref PublicSubnet2
Export:
Name: BattlemonPublicSubnet2
PrivateSubnet1:
Value: !Ref PrivateSubnet1
Export:
Name: BattlemonPrivateSubnet1
PrivateSubnet2:
Value: !Ref PrivateSubnet2
Export:
Name: BattlemonPrivateSubnet2
PrivateSubnet3:
Value: !Ref PrivateSubnet3
Export:
Name: BattlemonPrivateSubnet3
PrivateSubnet4:
Value: !Ref PrivateSubnet4
Export:
Name: BattlemonPrivateSubnet4
VpcCidr:
Value: !Ref VpcCIDR
Export:
Name: BattlemonVpcCIDR
PrivateSubnet1CIDR:
Value: !Ref PrivateSubnet1CIDR
Export:
Name: BattlemonPrivateSubnet1CIDR
PrivateSubnet2CIDR:
Value: !Ref PrivateSubnet2CIDR
Export:
Name: BattlemonPrivateSubnet2CIDR