-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (35 loc) · 1.11 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
variable "disabled_services" {
description = "List of services to disable. See main.tf for list"
default = []
type = list(string)
}
variable "cloudwatch_alarm_actions" {
description = "Actions for all cloudwatch alarms. e.g. an SNS topic ARN"
default = []
type = list(string)
}
variable "enabled" {
description = "If set to false no cloudwatch alarms will be created"
default = true
type = bool
}
variable "metric_data_file" {
description = "Path to YAML file containing the metrics to create alarms for. By default the one contained in the module will be used."
default = null
type = string
}
variable "alarm_name_prefix" {
description = "A string prefix for all cloudwatch alarms"
default = "ServiceQuota"
type = string
}
variable "cloudwatch_alarm_threshold" {
description = "The threshold for all cloudwatch alarms. This is a percentage of the limit so should be between 1-100"
default = 80
type = number
}
variable "tags" {
description = "Tags to add to all cloudwatch alarms"
type = map(string)
default = {}
}