[Bug]: #40251
Labels
bug
Addresses a defect in current functionality.
needs-triage
Waiting for first response or review from a maintainer.
service/wafv2
Issues and PRs that pertain to the wafv2 service.
Terraform Core Version
0.13+
AWS Provider Version
5.76.0
Affected Resource(s)
aws_wafv2_web_acl
Expected Behavior
association_config {
+ request_body {
+ api_gateway {
+ default_size_inspection_limit = "KB_64"
}
}
should be created,,..
Actual Behavior
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
Relevant Error/Panic Output Snippet
Terraform Configuration Files
terraform {
backend "s3" {}
required_providers {
aws = {
source = "hashicorp/aws"
version = "= 5.76.0"
}
archive = {
source = "hashicorp/archive"
version = "= 2.2.0"
}
random = {
source = "hashicorp/random"
version = "= 3.1.0"
}
template = {
source = "hashicorp/template"
version = "= 2.2.0"
}
}
required_version = ">= 0.13"
}
Steps to Reproduce
add association block in the resource: aws_wafv2_web_acl, then plan and apply
:resource "aws_wafv2_web_acl" "example" {
name = "large-request-body-example"
scope = "REGIONAL"
default_action {
allow {}
}
association_config {
request_body {
api_gateway {
default_size_inspection_limit = "KB_64"
}
}
}
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: