-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
422 lines (354 loc) · 10.8 KB
/
main.tf
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
resource "aws_cloudfront_cache_policy" "waf_passthrough" {
name = "${var.project}-${var.environment}-waf-passthrough"
comment = "We don't really care about caching, we just want to pass traffic to the WAF."
default_ttl = 1
max_ttl = 1
min_ttl = 1
parameters_in_cache_key_and_forwarded_to_origin {
enable_accept_encoding_brotli = true
enable_accept_encoding_gzip = true
cookies_config {
cookie_behavior = "all"
}
headers_config {
header_behavior = "whitelist"
headers {
items = ["Host"]
}
}
query_strings_config {
query_string_behavior = "all"
}
}
}
resource "aws_cloudfront_distribution" "waf" {
enabled = true
comment = "Pass traffic through WAF before sending to the origin."
is_ipv6_enabled = true
aliases = ["${local.subdomain}.${var.domain}"]
price_class = "PriceClass_100"
web_acl_id = aws_wafv2_web_acl.waf.arn
origin {
domain_name = local.origin_domain
origin_id = local.origin_domain
connection_attempts = 3
connection_timeout = 10
dynamic "custom_header" {
for_each = var.custom_headers
content {
name = custom_header.key
value = custom_header.value
}
}
custom_origin_config {
http_port = 80
https_port = 443
origin_keepalive_timeout = 5
origin_protocol_policy = "https-only"
origin_read_timeout = 30
origin_ssl_protocols = ["TLSv1.2"]
}
}
logging_config {
include_cookies = false
bucket = var.log_bucket
prefix = "cloudfront/${local.subdomain}.${var.domain}"
}
default_cache_behavior {
cache_policy_id = aws_cloudfront_cache_policy.waf_passthrough.id
allowed_methods = ["DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"]
cached_methods = ["GET", "HEAD"]
target_origin_id = local.origin_domain
compress = true
default_ttl = 0
max_ttl = 0
min_ttl = 0
origin_request_policy_id = data.aws_cloudfront_origin_request_policy.managed_cors.id
response_headers_policy_id = data.aws_cloudfront_response_headers_policy.managed_cors.id
viewer_protocol_policy = "redirect-to-https"
}
restrictions {
geo_restriction {
restriction_type = "none"
locations = []
}
}
viewer_certificate {
acm_certificate_arn = aws_acm_certificate.subdomain.arn
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1.2_2021"
}
tags = local.tags
}
resource "aws_wafv2_web_acl" "waf" {
name = local.prefix
description = "Web application firewall rules for ${var.project}."
scope = "CLOUDFRONT"
default_action {
allow {}
}
# For each IP set rule, create a rule with the appropriate action.
dynamic "rule" {
for_each = var.ip_set_rules
content {
name = rule.value.name != "" ? rule.value.name : "${local.prefix}-${rule.key}"
priority = rule.value.priority != null ? rule.value.priority : index(var.ip_set_rules, rule.key)
action {
dynamic "allow" {
for_each = rule.value.action == "allow" ? [true] : []
content {}
}
dynamic "block" {
for_each = rule.value.action == "block" ? [true] : []
content {}
}
dynamic "count" {
for_each = rule.value.action == "count" ? [true] : []
content {}
}
}
statement {
ip_set_reference_statement {
arn = rule.value.arn
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-ip-${rule.key}"
sampled_requests_enabled = true
}
}
}
# For each rate-limiting rule, create a rule with the appropriate action.
dynamic "rule" {
for_each = var.rate_limit_rules
content {
name = rule.value.name != "" ? rule.value.name : "${local.prefix}-rate-${rule.key}"
priority = rule.value.priority != null ? rule.value.priority : index(var.ip_set_rules, rule.key) + length(var.ip_set_rules)
action {
dynamic "allow" {
for_each = rule.value.action == "allow" ? [true] : []
content {}
}
dynamic "block" {
for_each = rule.value.action == "block" ? [true] : []
content {}
}
dynamic "count" {
for_each = rule.value.action == "count" ? [true] : []
content {}
}
}
statement {
rate_based_statement {
aggregate_key_type = "IP"
evaluation_window_sec = rule.value.window
limit = rule.value.limit
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-rate-${rule.key}"
sampled_requests_enabled = true
}
}
}
rule {
name = "AWS-AWSManagedRulesAmazonIpReputationList"
priority = 200
override_action {
dynamic "none" {
for_each = var.passive ? [] : [true]
content {}
}
dynamic "count" {
for_each = var.passive ? [true] : []
content {}
}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesAmazonIpReputationList"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-ip-reputation"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesCommonRuleSet"
priority = 300
override_action {
dynamic "none" {
for_each = var.passive ? [] : [true]
content {}
}
dynamic "count" {
for_each = var.passive ? [true] : []
content {}
}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesCommonRuleSet"
vendor_name = "AWS"
# If a set of upload paths have been provided, override the action for the
# SizeRestrictions_BODY rule. We'll create a custom rule that will exempt
# the provided paths.
dynamic "rule_action_override" {
for_each = length(var.upload_paths) > 0 ? [true] : []
content {
name = "SizeRestrictions_BODY"
action_to_use {
count {}
}
}
}
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-common-rules"
sampled_requests_enabled = true
}
}
# Create a custom rule to exempt the provided upload paths from the
# SizeRestrictions_BODY rule.
dynamic "rule" {
for_each = length(var.upload_paths) > 0 ? [true] : []
content {
name = "gyr-demo-waf-request-body-size"
priority = 301
action {
block {}
}
statement {
and_statement {
statement {
label_match_statement {
key = "awswaf:managed:aws:core-rule-set:SizeRestrictions_Body"
scope = "LABEL"
}
}
statement {
# If we have more than one upload path, we need to create an OR
# statement to match on any of the paths.
dynamic "or_statement" {
for_each = length(var.upload_paths) > 1 ? [true] : []
content {
dynamic "statement" {
for_each = var.upload_paths
content {
not_statement {
statement {
byte_match_statement {
positional_constraint = statement.value.constraint
search_string = statement.value.path
field_to_match {
uri_path {}
}
text_transformation {
priority = 0
type = "NONE"
}
}
}
}
}
}
}
}
# If we only have one path, we need to use a single NOT statement
# because OR statements require at least two statements.
dynamic "not_statement" {
for_each = length(var.upload_paths) == 1 ? var.upload_paths : []
content {
statement {
byte_match_statement {
positional_constraint = not_statement.value.constraint
search_string = not_statement.value.path
field_to_match {
uri_path {}
}
text_transformation {
priority = 0
type = "NONE"
}
}
}
}
}
}
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "gyr-demo-waf-request-body-size"
sampled_requests_enabled = true
}
}
}
rule {
name = "AWS-AWSManagedRulesKnownBadInputsRuleSet"
priority = 400
override_action {
dynamic "none" {
for_each = var.passive ? [] : [true]
content {}
}
dynamic "count" {
for_each = var.passive ? [true] : []
content {}
}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesKnownBadInputsRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-known-bad-inputs"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesSQLiRuleSet"
priority = 500
override_action {
dynamic "none" {
for_each = var.passive ? [] : [true]
content {}
}
dynamic "count" {
for_each = var.passive ? [true] : []
content {}
}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesSQLiRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf-sqli"
sampled_requests_enabled = true
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-waf"
sampled_requests_enabled = true
}
tags = local.tags
}
resource "aws_wafv2_web_acl_logging_configuration" "waf" {
log_destination_configs = [var.log_group]
resource_arn = aws_wafv2_web_acl.waf.arn
}