-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (55 loc) · 2.01 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
60
61
62
63
64
65
variable "treat_missing_data" {
type = string
default = "breaching"
description = "What happens to the alarm if no data points are received. One of 'missing', 'ignore', 'breaching' and 'notBreaching'"
}
variable "average_resource_datapoints_to_alarm" {
type = number
default = 3
description = "The number of datapoints that must be breaching to trigger the alarm"
}
variable "average_resource_evaluation_periods" {
type = number
default = 3
description = "The number of periods over which data is compared to the specified threshold"
}
variable "average_resource_period" {
type = number
default = 300
description = "The period in seconds over which the specified statistic is applied"
}
variable "average_resource_cpu_threshold" {
type = number
default = 100
description = "Average of cpu utilization to not be exceeded. Consider keeping some headroom."
}
variable "average_resource_memory_threshold" {
type = number
default = 100
description = "Average of memory utilization to not be exceeded. Consider keeping some headroom."
}
variable "maximum_resource_datapoints_to_alarm" {
type = number
default = 3
description = "The number of datapoints that must be breaching to trigger the alarm"
}
variable "maximum_resource_evaluation_periods" {
type = number
default = 10
description = "The number of periods over which data is compared to the specified threshold"
}
variable "maximum_resource_period" {
type = number
default = 60
description = "The period in seconds over which the specified statistic is applied"
}
variable "maximum_resource_cpu_threshold" {
type = number
default = 150
description = "maximum of cpu utilization to not be exceeded. Consider keeping some headroom."
}
variable "maximum_resource_memory_threshold" {
type = number
default = 150
description = "maximum of memory utilization to not be exceeded. Consider keeping some headroom."
}