generated from codeforamerica/tofu-modules-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
59 lines (50 loc) · 1.87 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
variable "default_webacls" {
type = list(string)
description = "Default WebACLs to for the dashboard filter."
default = []
}
variable "threshold_allowed_caution" {
type = number
description = "Caution threshold for allowed requests. Reflected when the percentage of allowed requests drops below this number."
default = 95
}
variable "threshold_allowed_warning" {
type = number
description = "Warning threshold for allowed requests. Reflected when the percentage of allowed requests drops below this number."
default = 85
}
variable "threshold_blocked_caution" {
type = number
description = "Caution threshold for blocked requests. Reflected when the percentage of blocked requests rises above this number."
default = 5
}
variable "threshold_blocked_warning" {
type = number
description = "Warning threshold for blocked requests. Reflected when the percentage of blocked requests rises above this number."
default = 10
}
variable "threshold_counted_caution" {
type = number
description = "Caution threshold for counted requests. Reflected when the percentage of counted requests rises above this number."
default = 5
}
variable "threshold_counted_warning" {
type = number
description = "Warning threshold for counted requests. Reflected when the percentage of counted requests rises above this number."
default = 10
}
variable "threshold_limited_caution" {
type = number
description = "Caution threshold for rate limited requests. Reflected when the percentage of rate limited rises above below this number."
default = 5
}
variable "threshold_limited_warning" {
type = number
description = "Warning threshold for rate limited requests. Reflected when the percentage of rate limited requests rises above this number."
default = 10
}
variable "title" {
type = string
description = "Title of the dashboard."
default = "Web Application Firewall (WAF)"
}