blob: bfa8bd37ac4033c2561bdddd9ce80e13e004c12b (
plain)
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
68
69
70
71
72
73
74
75
76
|
# Nomad
variable "nomad_datacenters" {
description = "Nomad data centers"
type = list(string)
default = [ "dc1" ]
}
# Exporter
variable "exporter_job_name" {
description = "Exporter job name"
type = string
default = "exporter"
}
variable "exporter_use_canary" {
description = "Uses canary deployment"
type = bool
default = false
}
# Node Exporter
variable "node_service_name" {
description = "Node exporter service name"
type = string
default = "nodeexporter"
}
variable "node_version" {
description = "Node exporter version"
type = string
default = "1.0.1"
}
variable "node_port" {
description = "Node exporter TCP allocation"
type = number
default = 9100
}
# Blackbox Exporter
variable "blackbox_service_name" {
description = "Blackbox exporter service name"
type = string
default = "blackboxexporter"
}
variable "blackbox_version" {
description = "Blackbox exporter version"
type = string
default = "0.18.0"
}
variable "blackbox_port" {
description = "Blackbox exporter TCP allocation"
type = number
default = 9115
}
# cAdvisor Exporter
variable "cadvisor_service_name" {
description = "cAdvisor exporter service name"
type = string
default = "cadvisorexporter"
}
variable "cadvisor_image" {
description = "cAdvisor exporter docker image"
type = string
default = "gcr.io/cadvisor/cadvisor:v0.38.7"
}
variable "cadvisor_port" {
description = "cAdvisor exporter TCP allocation"
type = number
default = 8080
}
|