-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbwaf_cft_1_instance_NEW_vpc_Payg_or_BYOL.json
370 lines (334 loc) · 8.87 KB
/
bwaf_cft_1_instance_NEW_vpc_Payg_or_BYOL.json
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Date: 5/25/21 Author: Brett Wolmarans [email protected] Barracuda WAF PAYG 1 instance, new VPC, 1 interface ( aka WAF on a stick ) **WARNING** This template creates an Amazon EC2 instance. You will be billed for the resources used if you create a stack from this template! The initial password is admin/<instanceid>. The WAF will have 1 interface with a public ip which is used for both management and ingress/egress traffic. Check the outputs at the end of stack creation for the public IP and DNS name. A security group will be created allowing inbound for 8000, 8443, 80, and 443, and 8080.",
"Parameters": {
"EnvironmentName": {
"Description": "An environment name that is prefixed to resource names",
"Default": "BWAF",
"Type": "String"
},
"InstanceType": {
"Description": "EC2 instance type",
"Type": "String",
"Default": "t2.medium",
"AllowedValues": [
"t2.medium",
"m4.large"
]
},
"LicenseType": {
"AllowedValues": [
"PAYG",
"BYOL"
],
"Default": "PAYG",
"Description": "PAYG or use your own BYOL license.",
"Type": "String"
},
"secGroupSrcCIDR": {
"Description": "Src IP CIDR for inbound security group for ports 8000/8443/80/443/8080",
"Type": "String",
"MinLength": "9",
"MaxLength": "18",
"Default": "0.0.0.0/0",
"AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})",
"ConstraintDescription": "Must be a valid IP CIDR range of the form x.x.x.x/x."
},
"VpcCIDR": {
"Description": "Subnet for the new VPC ( *** must not conflict with existing subnets *** ) ",
"Type": "String",
"Default": "10.0.0.0/16",
"AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})",
"ConstraintDescription": "Use valid CIDR notation"
},
"subNetCIDR": {
"Description": "Private subnet within the VPC address space. ",
"Type": "String",
"Default": "10.0.1.0/24",
"AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})"
}
},
"Conditions": {
"useBYOL": {
"Fn::Equals": [
{
"Ref": "LicenseType"
},
"BYOL"
]
}
},
"Mappings": {
"PAYGRegionMap": {
"us-east-1": { "ImageID": "ami-02ba799fdb5fda694" },
"eu-north-1": { "ImageID": "ami-0d743518c57557a7f" },
"ap-south-1": { "ImageID": "ami-049ddfff171e18266" },
"eu-west-3": { "ImageID": "ami-0596e2065cd63c027" },
"eu-west-2": { "ImageID": "ami-024254e7df69f666c" },
"eu-west-1": { "ImageID": "ami-0c2ee20b4d2005675" },
"ap-northeast-2": { "ImageID": "ami-0afbe401dbdb9a282" },
"ap-northeast-1": { "ImageID": "ami-0843e2a08adf5a2bb" },
"sa-east-1": { "ImageID": "ami-05b3d0dfa89c7dec6" },
"ca-central-1": { "ImageID": "ami-01cba513c0e5efe2b" },
"ap-southeast-1": { "ImageID": "ami-0e746d3a5b665a6fb" },
"ap-southeast-2": { "ImageID": "ami-00ae25082320f2b00" },
"eu-central-1": { "ImageID": "ami-0dcdd8046df8e35bf" },
"us-east-2": { "ImageID": "ami-063bad96bd053da6e" },
"us-west-1": { "ImageID": "ami-0a9b9407fc6bb2a73" },
"us-west-2": { "ImageID": "ami-07a03990a907dea03" }
},
"BYOLRegionMap": {
"us-east-1": { "ImageID": "ami-034543d76ef7650a8" },
"eu-north-1": { "ImageID": "ami-0ae80231e0a70f4b9" },
"ap-south-1": { "ImageID": "ami-09fb42d83e8bb92b5" },
"eu-west-3": { "ImageID": "ami-0944be87ea4cbcd2d" },
"eu-west-2": { "ImageID": "ami-01e69c4baf54bc744" },
"eu-west-1": { "ImageID": "ami-08646fe841b64d6ce" },
"ap-northeast-2": { "ImageID": "ami-00e2b2ae61dce213f" },
"ap-northeast-1": { "ImageID": "ami-0077e528ae43498f5" },
"sa-east-1": { "ImageID": "ami-08604eae176b674f3" },
"ca-central-1": { "ImageID": "ami-017cb89c18dc19aab" },
"ap-southeast-1": { "ImageID": "ami-07937237ea147620a" },
"ap-southeast-2": { "ImageID": "ami-08ab64d96c4c3d97d" },
"eu-central-1": { "ImageID": "ami-081825f8e52130748" },
"us-east-2": { "ImageID": "ami-0225a73ef8088e3ee" },
"us-west-1": { "ImageID": "ami-05a27e61529c3671a" },
"us-west-2": { "ImageID": "ami-00940bc5f7caf92b8" }
}
},
"Resources": {
"myVPC": {
"Type": "AWS::EC2::VPC",
"Properties": {
"CidrBlock": {
"Ref": "VpcCIDR"
},
"EnableDnsSupport": "true",
"EnableDnsHostnames": "true",
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"mySubnet": {
"Type": "AWS::EC2::Subnet",
"Properties": {
"VpcId": {
"Ref": "myVPC"
},
"CidrBlock": {
"Ref": "subNetCIDR"
},
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"myRouteTable": {
"Type": "AWS::EC2::RouteTable",
"Properties": {
"VpcId": {
"Ref": "myVPC"
},
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"myInternetGateway": {
"Type": "AWS::EC2::InternetGateway",
"Properties": {
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"InternetGatewayAttachment": {
"Type": "AWS::EC2::VPCGatewayAttachment",
"DependsOn" : "myInternetGateway",
"Properties": {
"VpcId": {
"Ref": "myVPC"
},
"InternetGatewayId": {
"Ref": "myInternetGateway"
}
}
},
"myRoute" : {
"Type" : "AWS::EC2::Route",
"DependsOn" : "InternetGatewayAttachment",
"Properties" : {
"RouteTableId" : { "Ref" : "myRouteTable" },
"DestinationCidrBlock" : "0.0.0.0/0",
"GatewayId" : { "Ref" : "myInternetGateway" }
}
},
"mySubnetRouteTableAssociation": {
"Type": "AWS::EC2::SubnetRouteTableAssociation",
"Properties": {
"SubnetId": {
"Ref": "mySubnet"
},
"RouteTableId": {
"Ref": "myRouteTable"
}
}
},
"EC2Instance": {
"Type": "AWS::EC2::Instance",
"Properties": {
"InstanceType": {
"Ref": "InstanceType"
},
"NetworkInterfaces": [
{
"DeviceIndex": "0",
"AssociatePublicIpAddress": true,
"SubnetId": {
"Ref": "mySubnet"
},
"GroupSet": [
{
"Fn::GetAtt": [
"BWAFsecGroup",
"GroupId"
]
}
]
}
],
"ImageId": {
"Fn::If" : [
"useBYOL",
{"Fn::FindInMap": [ "BYOLRegionMap", { "Ref": "AWS::Region" }, "ImageID" ] },
{"Fn::FindInMap": [ "PAYGRegionMap", { "Ref": "AWS::Region" }, "ImageID" ] }
]
},
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"BWAFsecGroup": {
"Type": "AWS::EC2::SecurityGroup",
"Properties": {
"GroupDescription": "Security rule group for the Barracuda WAF",
"VpcId": {
"Ref": "myVPC"
},
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "EnvironmentName" }
}
]
}
},
"BWAFsecRule1": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
"Ref": "BWAFsecGroup"
},
"IpProtocol": "tcp",
"FromPort": "8000",
"ToPort": "8000",
"CidrIp": {
"Ref": "secGroupSrcCIDR"
}
}
},
"BWAFsecRule2": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
"Ref": "BWAFsecGroup"
},
"IpProtocol": "tcp",
"FromPort": "8443",
"ToPort": "8443",
"CidrIp": {
"Ref": "secGroupSrcCIDR"
}
}
},
"BWAFsecRule3": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
"Ref": "BWAFsecGroup"
},
"IpProtocol": "tcp",
"FromPort": "80",
"ToPort": "80",
"CidrIp": {
"Ref": "secGroupSrcCIDR"
}
}
},
"BWAFsecRule4": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
"Ref": "BWAFsecGroup"
},
"IpProtocol": "tcp",
"FromPort": "443",
"ToPort": "443",
"CidrIp": {
"Ref": "secGroupSrcCIDR"
}
}
},
"BWAFsecRule5": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
"Ref": "BWAFsecGroup"
},
"IpProtocol": "tcp",
"FromPort": "8080",
"ToPort": "8080",
"CidrIp": {
"Ref": "secGroupSrcCIDR"
}
}
}
},
"Outputs": {
"PublicDNSName": {
"Description": "Public DNS name of the new EC2 instance",
"Value": {
"Fn::GetAtt": [
"EC2Instance",
"PublicDnsName"
]
}
},
"PublicIPAddress": {
"Description": "Public IP address of the new EC2 instance",
"Value": {
"Fn::GetAtt": [
"EC2Instance",
"PublicIp"
]
}
}
}
}