cdktf-cli
Advanced tools
Changelog
0.20.1
AWS Provider changes (breaking)
The AWS pre-built provider for Go is currently too large to be installed due to a hard limit in Go. This release adds skipping the statement
block in the rule
block of the aws_wafv2_web_acl
and aws_wafv2_rule_group
resources. Our resource docs page previously already mentioned that these resources have skipped attributes but they weren't actually skipped. This almost doubled AWS provider bindings in size due to the recursive nature of the statement
block.
If you are using any of these two resources, the statement
now has to be passed as a plain object instead and its keys have to be snake-cased (e.g. and_statement
or regex_match_statement
).
statement
block for rule
block in aws_wafv2_web_acl
and aws_wafv2_rule_group
resources #3414