Skip to content

Commit be812cf

Browse files
author
olamide
committed
Remove unsed variable values
1 parent 16637e0 commit be812cf

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

aws/waf/variables.tf

+5-7
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ variable "rate_limit_rules" {
4646
variable "header_match_rules" {
4747
description = "Rule statement to inspect and match the header for an incoming request."
4848
type = map(object({
49-
name = string # Name of the header match rule group
50-
priority = number # Relative processing order for header match rule relative to other rules processed by AWS WAF.
51-
header_name = string # This is the name of the header to inspect for all incoming requests.
52-
header_value = string # This is the value to look out for a matching header name for all incoming requests
53-
count_override = optional(bool, true) # If true, this will override the rule action setting to `count`, if false, the rule action will be set to `block`. Default value is false.
54-
country_list = optional(list(string), []) # List of countries to apply the header match to. If populated, from other countries will be ignored by this rule. IF empty, the rule will apply to all traffic. You must either specify country_list or exempt_country_list, but not both.
55-
exempt_country_list = optional(list(string), []) # List of countries to exempt from the header match rule. If populated, the selected countries will be ignored by this rule. IF empty, the rule will apply to all traffic. You must either specify country_list or exempt_country_list, but not both.
49+
name = string # Name of the header match rule group
50+
priority = number # Relative processing order for header match rule relative to other rules processed by AWS WAF.
51+
header_name = string # This is the name of the header to inspect for all incoming requests.
52+
header_value = string # This is the value to look out for a matching header name for all incoming requests
53+
count_override = optional(bool, true) # If true, this will override the rule action setting to `count`, if false, the rule action will be set to `block`. Default value is false.
5654
}))
5755

5856
default = null

0 commit comments

Comments
 (0)