-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
44 lines (37 loc) · 1.07 KB
/
variables.tf
File metadata and controls
44 lines (37 loc) · 1.07 KB
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
variable "create" {
type = bool
default = true
description = "wheter or not to create resources"
}
variable "name" {
description = "Name to apply for created resources"
type = string
}
variable "db_cluster_ids" {
description = "List of RDS cluster instances to monitor"
type = list(string)
default = []
}
variable "db_cluster_event_categories" {
description = "List of event categories for RDS cluster instances"
type = list(string)
default = ["configuration change", "failover", "failure", "maintenance"]
}
variable "db_instance_ids" {
description = "List of RDS instances to monitor"
type = list(string)
default = []
}
variable "db_instance_event_categories" {
description = "List of event categories for RDS instances"
type = list(string)
default = ["availability", "configuration change", "failover", "failure", "low storage", "maintenance"]
}
variable "slack_webhook" {
type = string
description = "Slack webhook URL"
}
variable "tags" {
type = map(string)
default = {}
}