1234567891011121314151617181920212223242526272829303132333435363738394041 |
- variable "excluded_rules_AWSManagedRulesCommonRuleSet" {
- type = list(string)
- default = [
- "SizeRestrictions_BODY" # Breaks too many things
- ]
- }
- variable "excluded_rules_AWSManagedRulesAmazonIpReputationList" {
- type = list(string)
- default = [ ]
- }
- variable "excluded_rules_AWSManagedRulesKnownBadInputsRuleSet" {
- type = list(string)
- default = [ ]
- }
- variable "excluded_rules_AWSManagedRulesSQLiRuleSet" {
- type = list(string)
- default = [ ]
- }
- variable "excluded_rules_AWSManagedRulesLinuxRuleSet" {
- type = list(string)
- default = [ ]
- }
- variable "excluded_rules_AWSManagedRulesUnixRuleSet" {
- type = list(string)
- default = [ ]
- }
- variable "allowed_ips" { type = list(string) }
- variable "additional_blocked_ips" { type = list(string) }
- variable "resource_arn" { type = string }
- variable "fqdns" { type = list(string) }
- variable "tags" { type = map }
- variable "aws_partition" { type = string }
- variable "aws_region" { type = string }
- variable "aws_account_id" { type = string }
|