-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
59 lines (48 loc) · 1.12 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
variable "env" {
type = string
}
variable "service" {
type = string
default = "Kubernetes"
}
variable "service_display_name" {
description = "Readable version of service name of what you're monitoring."
type = string
default = null
}
variable "notification_channel" {
type = string
description = "The @user or @pagerduty parameters that indicate to Datadog where to send the alerts"
}
variable "additional_tags" {
type = list(string)
default = []
}
variable "filter_str" {
type = string
}
variable "locked" {
type = bool
default = true
description = "Makes sure only the creator or admin can modify the monitor."
}
variable "state_metrics_monitoring" {
type = bool
default = true
}
variable "name_prefix" {
type = string
default = ""
}
variable "name_suffix" {
type = string
default = ""
}
variable "filter_str_concatenation" {
description = "If you use an IN expression you need to switch from , to AND"
default = ","
}
variable "priority_offset" {
description = "For non production workloads we can +1 on the priorities"
default = 0
}