Skip to content

Commit 0ce85cb

Browse files
committed
feat:Add rule_action_override dynamic block
1 parent 70dc24f commit 0ce85cb

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22

33
All notable changes to this module will be documented in this file.
4+
## [v1.3.1] - 2025-06-09
5+
6+
### Added
7+
8+
- Add rule_action_override dynamic block
9+
410
## [v1.3.0] - 2025-03-31
511

612
### Removed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,13 +223,13 @@ waf_custom_rules = [
223223
| Name | Version |
224224
|------|---------|
225225
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
226-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0.0 |
226+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0.0 |
227227

228228
## Providers
229229

230230
| Name | Version |
231231
|------|---------|
232-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0.0 |
232+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0.0 |
233233

234234
## Modules
235235

@@ -239,10 +239,12 @@ No modules.
239239

240240
| Name | Type |
241241
|------|------|
242+
| [aws_cloudwatch_log_group.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_log_group) | resource |
242243
| [aws_wafv2_ip_set.ipset](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/wafv2_ip_set) | resource |
243244
| [aws_wafv2_ip_set.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/wafv2_ip_set) | resource |
244245
| [aws_wafv2_web_acl.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/wafv2_web_acl) | resource |
245246
| [aws_wafv2_web_acl_association.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/wafv2_web_acl_association) | resource |
247+
| [aws_wafv2_web_acl_logging_configuration.main](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/wafv2_web_acl_logging_configuration) | resource |
246248

247249
## Inputs
248250

main.tf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,12 @@ resource "aws_wafv2_web_acl" "this" {
277277
}
278278
}
279279
}
280-
}
280+
}
281281
text_transformation {
282282
priority = 0
283283
type = "NONE"
284284
}
285-
285+
286286
}
287287
}
288288

@@ -444,12 +444,12 @@ resource "aws_wafv2_web_acl" "this" {
444444
}
445445
}
446446
}
447-
}
447+
}
448448
text_transformation {
449449
priority = 0
450450
type = "NONE"
451451
}
452-
452+
453453
}
454454
}
455455
#### support sqli_match_statement (Attack Match Condition)
@@ -622,12 +622,12 @@ resource "aws_wafv2_web_acl" "this" {
622622
}
623623
}
624624
}
625-
}
625+
}
626626
text_transformation {
627627
priority = 0
628628
type = "NONE"
629629
}
630-
630+
631631
}
632632
}
633633
#### support sqli_match_statement (Attack Match Condition)
@@ -787,12 +787,12 @@ resource "aws_wafv2_web_acl" "this" {
787787
}
788788
}
789789
}
790-
}
790+
}
791791
text_transformation {
792792
priority = 0
793793
type = "NONE"
794794
}
795-
795+
796796
}
797797
}
798798
#### support sqli_match_statement (Attack Match Condition)
@@ -970,12 +970,12 @@ resource "aws_wafv2_web_acl" "this" {
970970
}
971971
}
972972
}
973-
}
973+
}
974974
text_transformation {
975975
priority = 0
976976
type = "NONE"
977977
}
978-
978+
979979
}
980980
}
981981
#### TODO:

0 commit comments

Comments
 (0)