vars.tf 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. variable "excluded_rules_AWSManagedRulesCommonRuleSet" {
  2. type = list(string)
  3. default = [
  4. "SizeRestrictions_BODY" # Breaks too many things
  5. ]
  6. }
  7. variable "excluded_rules_AWSManagedRulesAmazonIpReputationList" {
  8. type = list(string)
  9. default = [ ]
  10. }
  11. variable "excluded_rules_AWSManagedRulesKnownBadInputsRuleSet" {
  12. type = list(string)
  13. default = [ ]
  14. }
  15. variable "excluded_rules_AWSManagedRulesSQLiRuleSet" {
  16. type = list(string)
  17. default = [ ]
  18. }
  19. variable "excluded_rules_AWSManagedRulesLinuxRuleSet" {
  20. type = list(string)
  21. default = [ ]
  22. }
  23. variable "excluded_rules_AWSManagedRulesUnixRuleSet" {
  24. type = list(string)
  25. default = [ ]
  26. }
  27. variable "allowed_ips" { type = list(string) }
  28. variable "additional_blocked_ips" { type = list(string) }
  29. variable "resource_arn" { type = string }
  30. variable "fqdns" { type = list(string) }
  31. variable "tags" { type = map }
  32. variable "aws_partition" { type = string }
  33. variable "aws_region" { type = string }
  34. variable "aws_account_id" { type = string }