forked from AymenSegni/terraform-helm-linkerd2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (34 loc) · 1010 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
variable "cluster_dns_name" {
description = "DNS Domainname for the cluster"
type = string
default = "cluster.local"
}
variable "linkerd_version" {
description = "linkerd version to be installed"
type = string
}
variable "enable_linkerd_ha" {
description = "Enable Linkerd HA Mode for production cluster if true"
type = bool
default = false
}
variable "helm_values_linkerd" {
description = "helm chart values.yaml to be used in addtion"
type = string
default = ""
}
variable "external_prometheus_url" {
description = "disable internal prometheus in favour of external prometheus by supplying prometheus url. See https://linkerd.io/2.11/tasks/external-prometheus/"
type = string
default = ""
}
variable "enable_linkerd_smi" {
description = "Enable Linkerd SMI"
type = bool
default = true
}
variable "enable_linkerd_failover" {
description = "Enable Linkerd SMI"
type = bool
default = true
}