-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
82 lines (69 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
variable "istio_namespace" {
type = string
description = "Namespace where istio components will be deployed"
default = "istio-system"
}
variable "create_istio_namespace" {
type = bool
description = "Whether or not the targeted namespace for istio components should be deployed"
default = true
}
variable "istio_operator_namespace" {
type = string
description = "Namespace where the istio operator will be deployed"
default = "istio-operator"
}
variable "create_istio_operator_namespace" {
type = bool
description = "Whether or not the targeted namespace for istio operator should be deployed"
default = true
}
variable "ingress_gateway_annotations" {
type = map(string)
description = "Map of annotation for the istio ingress gateway"
default = {}
}
variable "ingress_gateway_selector" {
type = string
description = "Istio ingress gateway selector suffix"
default = "ingressgateway"
}
variable "ingress_gateway_ip" {
type = string
description = "Ingress gateway IP, if you want to fix it"
default = ""
}
variable "ingress_gateway_source_ranges" {
type = string
description = "Ingress gateway allowed source ranges"
default = ""
}
variable "istio_version" {
type = string
description = "Version of istio that will be deployed"
default = "1.13.4"
}
variable "module_depends_on" {
type = any
default = null
}
variable "grafana_subpath" {
type = string
description = "Subpath for Grafana endpoint, useful if is behind a Virtual Service"
default = ""
}
variable "kiali_path" {
type = string
description = "Path for Kiali endpoint, useful if is behind a Virtual Service"
default = ""
}
variable "tracing_path" {
type = string
description = "Path for Jaeger endpoint, useful if is behind a Virtual Service"
default = "/jaeger"
}
variable "prometheus_path" {
type = string
description = "Path for prometheus endpoint, useful if is behind a Virtual Service"
default = ""
}