blob: 0c2382b16aa61c4205a547be1af1f76b85491e3b (
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
|
# Nomad
variable "nomad_datacenters" {
description = "Nomad data centers"
type = list(string)
default = [ "dc1" ]
}
# Grafana
variable "grafana_job_name" {
description = "Grafana job name"
type = string
default = "grafana"
}
variable "grafana_group_count" {
description = "Number of grafana group instances"
type = number
default = 1
}
variable "grafana_service_name" {
description = "Grafana service name"
type = string
default = "grafana"
}
variable "grafana_container_image" {
description = "Grafana docker image"
type = string
default = "grafana/grafana:7.3.7"
}
variable "grafana_use_canary" {
description = "Uses canary deployment"
type = bool
default = false
}
variable "grafana_vault_secret" {
description = "Set of properties to be able to fetch secret from vault"
type = object({
use_vault_provider = bool,
vault_kv_policy_name = string,
vault_kv_path = string,
vault_kv_field_access_key = string,
vault_kv_field_secret_key = string
})
}
variable "grafana_cpu" {
description = "Grafana CPU allocation"
type = number
default = 2000
}
variable "grafana_mem" {
description = "Grafana RAM allocation"
type = number
default = 8192
}
variable "grafana_port" {
description = "Grafana TCP allocation"
type = number
default = 3000
}
|