-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
53 lines (43 loc) · 866 Bytes
/
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
variable "env" {
type = string
}
variable "service" {
type = string
default = "Kafka"
}
variable "notification_channel" {
type = string
}
variable "additional_tags" {
type = list(string)
default = []
}
variable "filter_str" {
type = string
}
variable "is_hosted_service" {
type = bool
default = false
}
variable "locked" {
type = bool
default = true
}
variable "system_notification_channel_override" {
type = string
default = null
}
variable "name_prefix" {
description = "Can be used to prefix to the Monitor name"
type = string
default = ""
}
variable "name_suffix" {
description = "Can be used to suffix to the Monitor name"
type = string
default = ""
}
variable "priority_offset" {
description = "For non production workloads we can +1 on the priorities"
default = 0
}