hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.82k stars 9.16k forks source link

[Enhancement]: Add oversize_handling configuration to AWS WAF for body block #28461

Closed tadayoni1 closed 1 year ago

tadayoni1 commented 1 year ago

Description

Add oversize_handling configuration to AWS WAF for body block.

Affected Resource(s) and/or Data Source(s)

Potential Terraform Configuration

statement {
    regex_pattern_set_reference_statement {
        arn = aws_wafv2_regex_pattern_set.this.arn
        field_to_match {
            body {
                oversize_handling = "CONTINUE"
            }
        }
        text_transformation {
            priority = 0
            type     = "NONE"
        }
    }
}

References

This has been fixed for json_body, headers and cookies blocks but missed for body block by https://github.com/hashicorp/terraform-provider-aws/pull/26506

Would you like to implement a fix?

None

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

ErickVaquero commented 1 year ago

This appears to be a duplicate of : https://github.com/hashicorp/terraform-provider-aws/issues/25545

breathingdust commented 1 year ago

Duplicate of #25545

github-actions[bot] commented 1 year ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.