-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
40 lines (34 loc) · 1.02 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
variable "efs_id" {
type = "string"
description = "EFS ID"
}
variable "prefix" {
type = "string"
default = ""
description = "Alarm Name Prefix"
}
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 "anomaly_period" {
type = "string"
default = "600"
description = "The number of seconds that make each evaluation period for anomaly detection."
}
variable "actions_alarm" {
type = "list"
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"
default = []
description = "A list of actions to take when alarms are cleared. Will likely be an SNS topic for event distribution."
}