forked from particuleio/terraform-kubernetes-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
149 lines (125 loc) · 3.75 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
variable "cert-manager" {
description = "Customize cert-manager chart, see `cert-manager.tf` for supported values"
type = any
default = {}
}
variable "cluster-autoscaler" {
description = "Customize cluster-autoscaler chart, see `cluster-autoscaler.tf` for supported values"
type = any
default = {}
}
variable "cluster-name" {
description = "Name of the Kubernetes cluster"
default = "sample-cluster"
type = string
}
variable "external-dns" {
description = "Map of map for external-dns configuration: see `external_dns.tf` for supported values"
type = any
default = {}
}
variable "flux" {
description = "Customize Flux chart, see `flux.tf` for supported values"
type = any
default = {}
}
variable "helm_defaults" {
description = "Customize default Helm behavior"
type = any
default = {}
}
variable "istio-operator" {
description = "Customize istio operator deployment, see `istio_operator.tf` for supported values"
type = any
default = {}
}
variable "karma" {
description = "Customize karma chart, see `karma.tf` for supported values"
type = any
default = {}
}
variable "keycloak" {
description = "Customize keycloak chart, see `keycloak.tf` for supported values"
type = any
default = {}
}
variable "kong" {
description = "Customize kong-ingress chart, see `kong.tf` for supported values"
type = any
default = {}
}
variable "kube-prometheus-stack" {
description = "Customize kube-prometheus-stack chart, see `kube-prometheus-stack.tf` for supported values"
type = any
default = {}
}
variable "labels_prefix" {
description = "Custom label prefix used for network policy namespace matching"
type = string
default = "particule.io"
}
variable "loki-stack" {
description = "Customize loki-stack chart, see `loki-stack.tf` for supported values"
type = any
default = {}
}
variable "metrics-server" {
description = "Customize metrics-server chart, see `metrics_server.tf` for supported values"
type = any
default = {}
}
variable "ingress-nginx" {
description = "Customize ingress-nginx chart, see `nginx-ingress.tf` for supported values"
type = any
default = {}
}
variable "npd" {
description = "Customize node-problem-detector chart, see `npd.tf` for supported values"
type = any
default = {}
}
variable "priority-class" {
description = "Customize a priority class for addons"
type = any
default = {}
}
variable "priority-class-ds" {
description = "Customize a priority class for addons daemonsets"
type = any
default = {}
}
variable "promtail" {
description = "Customize promtail chart, see `loki-stack.tf` for supported values"
type = any
default = {}
}
variable "sealed-secrets" {
description = "Customize sealed-secrets chart, see `sealed-secrets.tf` for supported values"
type = any
default = {}
}
variable "strimzi-kafka-operator" {
description = "Customize strimzi-kafka-operator chart, see `strimzi-kafka-operator.tf` for supported values"
type = any
default = {}
}
variable "thanos" {
description = "Customize thanos chart, see `thanos.tf` for supported values"
type = any
default = {}
}
variable "thanos-tls-querier" {
description = "Customize thanos chart, see `thanos.tf` for supported values"
type = any
default = {}
}
variable "thanos-storegateway" {
description = "Customize thanos chart, see `thanos.tf` for supported values"
type = any
default = {}
}
variable "thanos-memcached" {
description = "Customize thanos chart, see `thanos.tf` for supported values"
type = any
default = {}
}