generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
67 lines (53 loc) · 1.14 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
60
61
62
63
64
65
66
67
variable "filter_str" {
type = string
}
variable "env" {
type = string
}
variable "service" {
type = string
default = "Kong"
}
variable "notification_channel" {
type = string
}
variable "additional_tags" {
type = list(string)
default = []
}
variable "locked" {
type = bool
default = false
}
variable "name_prefix" {
type = string
default = ""
}
variable "name_suffix" {
type = string
default = ""
}
variable "service_check_include_tags" {
description = "Tags to be included in the \"over\" section of a service check query"
type = list(string)
}
variable "service_check_exclude_tags" {
description = "Tags to be included in the \"exclude\" section of a service check query"
type = list(string)
default = []
}
variable "docker_container_monitoring_enabled" {
type = bool
}
variable "docker_filter_str" {
type = string
default = null
}
variable "runs_in_k8s" {
description = "Determines whether or not we also do group by on cluster_name"
type = bool
}
variable "priority_offset" {
description = "For non production workloads we can +1 on the priorities"
default = 0
}