How to block waf rule actions in aws_wafv2_web_acl

Hi all,
in waf aws manged rule group we have multiple rules when i trying to block those with below code

this is one of the rule block
managed_rule_group_statement = {
name = “AWSManagedRulesCommonRuleSet”
vendor_name = “AWS”
rule_action_override {
name = “SizeRestrictions_BODY”
action_to_use {
block {}
}
}
i am using below versions
aws = 3.70.0
terraform =0.14.0

i seen in terraform registry that 3.70.0 version not supporting above block of code
so is there any alternative option to block those rules with 3.70.0 version?
anyone please help me on this?