-
Notifications
You must be signed in to change notification settings - Fork 9
/
variables.tf
57 lines (48 loc) · 1.38 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
variable "load_balancer_id" {
type = string
description = "ALB ID"
}
variable "target_group_id" {
type = string
description = "Target Group ID"
}
variable "prefix" {
type = string
default = ""
description = "Alarm Name Prefix"
}
variable "response_time_threshold" {
type = string
default = "0.05"
description = "The average number of seconds that requests should complete within."
}
variable "unhealthy_hosts_threshold" {
type = string
default = "0"
description = "The number of unhealthy hosts."
}
variable "healthy_hosts_threshold" {
type = string
default = "0"
description = "The number of healthy hosts."
}
variable "evaluation_period" {
type = string
default = "5"
description = "The evaluation period over which to use when triggering alarms."
}
variable "statistic_period" {
type = string
default = "60"
description = "The number of seconds that make each statistic period."
}
variable "actions_alarm" {
type = list(string)
default = []
description = "A list of actions to take when alarms are triggered. Will likely be an SNS topic for event distribution."
}
variable "actions_ok" {
type = list(string)
default = []
description = "A list of actions to take when alarms are cleared. Will likely be an SNS topic for event distribution."
}