forked from particuleio/terraform-kubernetes-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
257 lines (215 loc) · 6.62 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
variable "admiralty" {
description = "Customize admiralty chart, see `admiralty.tf` for supported values"
type = any
default = {}
}
variable "cert-manager" {
description = "Customize cert-manager chart, see `cert-manager.tf` for supported values"
type = any
default = {}
}
variable "cert-manager-csi-driver" {
description = "Customize cert-manager-csi-driver 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 "csi-external-snapshotter" {
description = "Customize csi-external-snapshotter, see `csi-external-snapshotter.tf` for supported values"
type = any
default = {}
}
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 "flux2" {
description = "Customize Flux chart, see `flux2.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 "k8gb" {
description = "Customize k8gb chart, see `k8gb.tf` for supported values"
type = any
default = {}
}
variable "karma" {
description = "Customize karma chart, see `karma.tf` for supported values"
type = any
default = {}
}
variable "keda" {
description = "Customize keda chart, see `keda.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 "kyverno" {
description = "Customize kyverno chart, see `kyverno.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 "linkerd2" {
description = "Customize linkerd2 chart, see `linkerd2.tf` for supported values"
type = any
default = {}
}
variable "linkerd2-cni" {
description = "Customize linkerd2-cni chart, see `linkerd2-cni.tf` for supported values"
type = any
default = {}
}
variable "linkerd-viz" {
description = "Customize linkerd-viz chart, see `linkerd-viz.tf` for supported values"
type = any
default = {}
}
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 "prometheus-blackbox-exporter" {
description = "Customize prometheus-blackbox-exporter chart, see `prometheus-blackbox-exporter.tf` for supported values"
type = any
default = {}
}
variable "prometheus-adapter" {
description = "Customize prometheus-adapter chart, see `prometheus-adapter.tf` for supported values"
type = any
default = {}
}
variable "promtail" {
description = "Customize promtail chart, see `loki-stack.tf` for supported values"
type = any
default = {}
}
variable "rabbitmq-operator" {
description = "Customize rabbitmq-operator chart, see `rabbitmq-operator.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 "secrets-store-csi-driver" {
description = "Customize secrets-store-csi-driver chart, see `secrets-store-csi-driver.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 = {}
}
variable "tigera-operator" {
description = "Customize tigera-operator chart, see `tigera-operator.tf` for supported values"
type = any
default = {}
}
variable "traefik" {
description = "Customize traefik chart, see `traefik.tf` for supported values"
type = any
default = {}
}
variable "vault" {
description = "Customize Hashicorp Vault chart, see `vault.tf` for supported values"
type = any
default = {}
}
variable "victoria-metrics-k8s-stack" {
description = "Customize Victoria Metrics chart, see `victoria-metrics-k8s-stack.tf` for supported values"
type = any
default = {}
}