Prechádzať zdrojové kódy

Merge pull request #399 from mdr-engineering/hotfix/ftd_na_FixWAFForCustSH

Disables the RestrictedExtensions_URIPATH rule for Cust SH
Frederick Damstra 3 rokov pred
rodič
commit
9b55ebf36b

+ 4 - 0
base/splunk_servers/customer_searchhead/waf.tf

@@ -12,6 +12,10 @@ module "waf" {
     #    keys(module.public_dns_record_cust-auth-elb.forward),
   )
 
+  excluded_rules_AWSManagedRulesCommonRuleSet = [
+    "SizeRestrictions_BODY",
+    "RestrictedExtensions_URIPATH"
+  ]
 
   # These are passed through and should be the same for module
   tags = merge(var.standard_tags, var.tags)