generated from geekcell/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
316 lines (258 loc) · 6.68 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
/**
* # Terraform AWS WAF
*
* This Terraform module provides a preconfigured solution for setting up
* AWS WAF in your AWS account. AWS WAF is a web application firewall that
* helps protect your web applications from common web exploits that could
* affect application availability, compromise security, or consume excessive
* resources. With this Terraform module, you can easily and efficiently set
* up and manage AWS WAF for your Load Balancer, API Gateway, or Cognito
* User Pool.
*/
resource "aws_wafv2_web_acl" "main" {
name = local.prefix
description = "Default Web ACL for ${var.name}"
scope = "REGIONAL"
default_action {
allow {}
}
rule {
name = "ip-blocking"
priority = 0
action {
allow {}
}
statement {
ip_set_reference_statement {
arn = aws_wafv2_ip_set.ip_blocking.arn
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-rule-ip-blocking"
sampled_requests_enabled = true
}
}
rule {
name = "ip-rate-limit-for-api"
priority = 1
action {
count {}
}
statement {
rate_based_statement {
aggregate_key_type = "FORWARDED_IP"
limit = 100
forwarded_ip_config {
fallback_behavior = "MATCH"
header_name = "X-Forwarded-For"
}
scope_down_statement {
byte_match_statement {
positional_constraint = var.rate_limit_positional_constraint
search_string = var.rate_limit_search_string
field_to_match {
uri_path {}
}
text_transformation {
priority = 0
type = "URL_DECODE"
}
}
}
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-rule-ip-rate-limit-for-api"
sampled_requests_enabled = true
}
}
rule {
name = "ip-rate-limit-overall"
priority = 2
action {
count {}
}
statement {
rate_based_statement {
aggregate_key_type = "FORWARDED_IP"
limit = 150
forwarded_ip_config {
fallback_behavior = "MATCH"
header_name = "X-Forwarded-For"
}
scope_down_statement {
byte_match_statement {
positional_constraint = "STARTS_WITH"
search_string = "/"
field_to_match {
uri_path {}
}
text_transformation {
priority = 0
type = "URL_DECODE"
}
}
}
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "${local.prefix}-rule-ip-rate-limit-overall"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesBotControlRuleSet"
priority = 3
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesBotControlRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesBotControlRuleSet"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesAmazonIpReputationList"
priority = 4
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesAmazonIpReputationList"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesAmazonIpReputationList"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesCommonRuleSet"
priority = 5
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesCommonRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesCommonRuleSet"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesKnownBadInputsRuleSet"
priority = 6
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesKnownBadInputsRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesKnownBadInputsRuleSet"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesLinuxRuleSet"
priority = 7
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesLinuxRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesLinuxRuleSet"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesPHPRuleSet"
priority = 8
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesPHPRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesPHPRuleSet"
sampled_requests_enabled = true
}
}
rule {
name = "AWS-AWSManagedRulesSQLiRuleSet"
priority = 9
override_action {
none {}
}
statement {
managed_rule_group_statement {
name = "AWSManagedRulesSQLiRuleSet"
vendor_name = "AWS"
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = "AWS-AWSManagedRulesSQLiRuleSet"
sampled_requests_enabled = true
}
}
visibility_config {
cloudwatch_metrics_enabled = true
metric_name = local.prefix
sampled_requests_enabled = false
}
tags = var.tags
}
resource "aws_wafv2_ip_set" "ip_blocking" {
name = "${local.prefix}-ip-blocking"
description = "IP blocking for ${local.prefix}"
ip_address_version = "IPV4"
scope = "REGIONAL"
addresses = []
lifecycle {
ignore_changes = [
addresses
]
}
tags = var.tags
}
resource "aws_wafv2_web_acl_association" "main" {
resource_arn = var.resource_arn
web_acl_arn = aws_wafv2_web_acl.main.arn
}
locals {
prefix = "${var.name}-web-acl"
}