-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
362 lines (297 loc) · 7.91 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
variable "name" {
description = "Value for kong name in pods"
type = string
default = ""
}
variable "namespace" {
description = "Namespace where resources are deployed"
type = string
default = "default"
}
variable "chart_repository" {
description = "Helm chart repository for Kong"
type = string
default = "https://charts.konghq.com"
}
variable "chart_name" {
description = "Helm chart name for Kong"
type = string
default = "kong"
}
variable "chart_version" {
description = "Helm chart version for Kong"
type = string
default = "2.41.0"
}
variable "chart_extra_set_configs" {
description = "Using a list of maps as `[{\"name\"=\"foo\", \"value\"=\"bar\"},]` to create dynamics blocks of 'set' to merge with values"
type = list(any)
default = []
}
variable "kong_image" {
description = "Kong docker image name"
type = string
default = "kong"
}
variable "kong_tag" {
description = "Kong docker image tag"
type = string
default = "3.4"
}
variable "enable_autoscaling" {
description = "Define if autoscale option is enable for Kong's pods"
type = bool
default = false
}
variable "autoscaling_max_replicas" {
description = "Number of maximum replicas of pods"
type = string
default = 2
}
variable "autoscaling_min_replicas" {
description = "Number of minimum replicas of pods"
type = string
default = 1
}
variable "autoscaling_cpu_average_usage" {
description = "Cpu average usage for autoscaling"
type = number
default = 70
}
variable "autoscaling_mem_average_usage" {
description = "Memory average usage for autoscaling"
type = number
default = 75
}
variable "replica_count" {
description = "Number of Kong pod replicas if autoscaling is not enable"
type = string
default = 1
}
variable "database_engine" {
description = "Database engine for Kong"
type = string
default = "postgres"
}
variable "db_host" {
description = "PostgreSQL database hostname"
type = string
}
variable "db_port" {
description = "PostgreSQL database port"
type = string
default = "5432"
}
variable "db_name" {
description = "PostgreSQL database name"
type = string
}
variable "db_pass" {
description = "PostgreSQL database password"
type = string
}
variable "db_user" {
description = "PostgreSQL database user"
type = string
}
variable "enable_proxy_service" {
description = "Enable Kong proxy service"
type = bool
default = true
}
variable "enable_proxy_https" {
description = "Enable TLS on Kong proxy service"
type = bool
default = false
}
variable "proxy_service_type" {
description = "Kong proxy service type on Kubernetes"
type = string
default = "ClusterIP"
}
variable "proxy_annotations" {
description = "Annotations for the Kong proxy service"
type = map(any)
default = {}
}
variable "enable_proxy_ingress" {
description = "Proxy exposure using another Ingress Controller"
type = bool
default = false
}
variable "proxy_ingress_host" {
description = "Proxy Host on another Ingress Controller"
type = string
default = "api.local"
}
variable "proxy_ingress_path" {
description = "Proxy path on another Ingress Controller"
type = string
default = "/"
}
variable "proxy_ingress_annotations" {
description = "Annotations for proxy on another Ingress Controller"
type = map(any)
default = {}
}
variable "proxy_ingressClassName" {
description = "value"
type = string
default = ""
}
variable "enable_admin_service" {
description = "Enable Kong admin service"
type = bool
default = true
}
variable "admin_ingressClassName" {
description = "value"
type = string
default = ""
}
variable "admin_service_type" {
description = "Kong admin service type on Kubernetes"
type = string
default = "ClusterIP"
}
variable "admin_annotations" {
description = "Annotations for the Kong admin service"
type = map(any)
default = {}
}
variable "enable_admin_ingress" {
description = "Admin exposure using another Ingress Controller"
type = bool
default = false
}
variable "admin_ingress_hostname" {
description = "Kong admin hostname"
type = string
default = "admin.local"
}
variable "admin_ingress_path" {
description = "Kong admin path on Ingress"
type = string
default = "/"
}
variable "admin_ingress_annotations" {
description = "Annotations for Kong admin ingress"
type = map(any)
default = {}
}
variable "enable_manager_service" {
description = ""
type = bool
default = false
}
variable "manager_service_type" {
description = "Kong manager service type on Kubernetes"
type = string
default = ""
}
variable "manager_annotations" {
description = "Annotations for the Kong manager service"
type = map(any)
default = {}
}
variable "enable_manager_ingress" {
description = "manager exposure using another Ingress Controller"
type = bool
default = false
}
variable "manager_ingress_host" {
description = "manager Host on another Ingress Controller"
type = string
default = ""
}
variable "manager_ingress_path" {
description = "manager path on another Ingress Controller"
type = string
default = ""
}
variable "manager_ingress_annotations" {
description = "Annotations for manager on another Ingress Controller"
type = map(any)
default = {}
}
variable "manager_ingressClassName" {
description = "value"
type = string
default = ""
}
variable "enable_manager_https" {
description = "value"
type = bool
default = false
}
###
variable "create_ingress_controller" {
description = "Create an Kong Ingress Controller"
type = bool
default = false
}
variable "ingress_controller_install_crds" {
description = "Install CRDS for Kong ingress controller, ONLY if using HELM 2."
type = bool
default = false
}
variable "resources" {
description = "Define the limits and/or requests on pod resources"
type = map(any)
default = {}
}
variable "ingress_image" {
description = "Define name for image ingress controller"
type = string
default = "kong/kubernetes-ingress-controller"
}
variable "ingress_image_tag" {
description = "Define tag for image ingress controller"
type = string
default = "1.1"
}
variable "extra_env_configs" {
description = "Define a list of maps as `[{\"name\"=\"foo\", \"value\"=\"bar\"},]` to configure customs values for kong.conf"
type = list(any)
default = []
}
variable "bash_image" {
description = "Bash docker image name for jobs"
type = string
default = "bash"
}
variable "bash_image_tag" {
description = "Bash docker image tag for jobs"
type = number
default = 5
}
variable "registry" {
description = "Custom registry host for be used in all the containers"
type = string
default = ""
}
variable "reg_cred" {
description = "Registry secret credential"
type = list(any)
default = []
}
variable "migrations_pre_upgrade" {
description = "Able to activate pre upgrade containers"
type = bool
default = true
}
variable "migrations_post_upgrade" {
description = "Able to activate post upgrade containers"
type = bool
default = true
}
variable "migrations_resources" {
description = "Define the limits and/or requests for migrations containers"
type = map(any)
default = {}
}
variable "priority_class_name" {
description = "Priority indicates the importance of a Pod relative to other Pods. Kubernetes already ships with two PriorityClasses: `system-cluster-critical` and `system-node-critical`."
type = string
default = ""
}