Hi All, I have statement in rules waf like this. I...
# general
a
Hi All, I have statement in rules waf like this. I just want to add oversize in xss match statement.
Copy code
xssMatchStatement: {
                fieldToMatch: {
                    body: {
                        oversizeHandling: "CONTINUE",
                    },
                },
                textTransformations: [
                    {
                        priority: 0,
                        type: "URL_DECODE",
                    },
                    {
                        priority: 1,
                        type: "HTML_ENTITY_DECODE",
                    },
                ],
            },
        },
But when I run the pulumi, there was something error like ’ “error: awswafv2/ruleGroupRuleGroup resource ‘Managed-AllowCrossSiteScriptingBody’ has a problem: Invalid or unknown key. Examine values at ‘RuleGroup.Rules’.” Thank you in advance