-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
933 lines (767 loc) · 24.2 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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
variable "admin_email" {
description = "Email of cluster administrator"
type = string
default = null
}
variable "ingress_domain" {
description = "Main domain for ingress setup"
type = string
default = "cluster.local"
}
variable "ingress_class_name" {
description = "Default ingress class name"
type = string
default = "apisix"
}
variable "cert_manager_issuer" {
description = "Default Cert Manager Cluster Issuer"
type = string
default = null
}
# EKS
variable "vpc_id" {
description = "ID of target VPC, 'default' will be used by default"
type = string
default = ""
}
variable "subnets_by_az" {
description = "List of objects that contain subnets ids sorted by availability zones"
type = list(object({
subnets = list(string)
zone = string
}))
default = null
}
variable "private_subnets_filters" {
description = "List of filters for private subnets data source"
type = list(object({
name = string
values = list(string)
}))
default = [
{
name = "map-public-ip-on-launch"
values = ["false"]
}
]
}
variable "number_of_multi_az" {
description = "How many availability zones should be used for running control plane and nodes"
type = number
default = 3
}
variable "cluster_name" {
description = "AWS EKS cluster name"
type = string
}
variable "cluster_version" {
description = "AWS EKS cluster version"
type = string
default = "1.29"
}
# https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/blob/0e9d6c9b7115ecf0404c377c9c2529bffa56d10d/docs/amazon-eks-addons.md
variable "eks_addons" {
description = "AWS EKS cluster addons map, default is latest coredns, kube-proxy, vpc-cni, aws-ebs-csi-driver, snapshot-controller"
type = any
default = {}
}
variable "eks_addons_timeouts" {
description = "Create, update, and delete timeout configurations for the EKS add-ons"
type = map(string)
default = {}
}
variable "self_managed_node_group_defaults" {
description = "Defaults configs for self_managed_node_groups"
type = any
default = {}
}
variable "eks_managed_node_group_defaults" {
description = "Defaults configs for eks_managed_node_groups"
type = any
default = {}
}
variable "fargate_profile_defaults" {
description = "Defaults configs for fargate_profiles"
type = any
default = {}
}
# https://docs.aws.amazon.com/eks/latest/APIReference/API_Nodegroup.html
# https://registry.terraform.io/modules/terraform-aws-modules/eks/aws/latest/submodules/eks-managed-node-group
variable "group_defaults" {
description = "Defaults configs for self_managed_node_groups, eks_managed_node_groups and fargate_profiles"
type = any
default = {
min_size = 0
max_size = 5
desired_size = 0
instance_types = ["m6a.large"] #, "m5a.large", "m7i-flex.large", "m6i.large", "m5.large", "m4.large", "m7i.large"] # 2cpu 8gb
# instance_types = ["c6a.large", "c5a.large", "c6i.large", "c5.large", "c5ad.large", "c5ad.large"] # 2cpu 4gb
capacity_type = "ON_DEMAND" # "SPOT"
platform = "linux" # "bottlerocket"
ami_type = "AL2_x86_64" # "BOTTLEROCKET_x86_64"
disk_size = 20
# ebs_optimized = true # https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html
enclave_options = {}
update_config = {
max_unavailable_percentage = 33 # or set `max_unavailable`
}
# Needed by the aws-ebs-csi-driver
iam_role_additional_policies = {
AmazonEBSCSIDriverPolicy = "arn:aws:iam::aws:policy/service-role/AmazonEBSCSIDriverPolicy"
AmazonSSMManagedInstanceCore = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
tags = {
Terraform = "true"
Managed = "eks"
}
}
}
variable "self_managed_node_groups" {
description = "Configs for self_managed_node_groups"
type = any
default = {}
}
variable "self_managed_node_group_templates_for_multi_az" {
description = "Templates for generating similar self managed node group in each availability zone"
type = any
default = {}
}
variable "self_managed_node_group_number_of_multi_az" {
description = "How many availability zones should be used for generating self managed node groups from template"
type = number
default = 3
}
variable "eks_managed_node_groups" {
description = "Configs for eks_managed_node_groups"
type = any
default = {}
}
variable "eks_managed_node_group_templates_for_multi_az" {
description = "Templates for generating similar eks managed node group in each availability zone"
type = any
default = {}
}
variable "eks_managed_node_group_number_of_multi_az" {
description = "How many availability zones should be used for generating eks managed node groups from template"
type = number
default = 3
}
variable "fargate_profiles" {
description = "Configs for fargate_profiles"
type = any
default = {}
}
variable "fargate_profile_templates_for_multi_az" {
description = "Templates for generating similar fargate profiles in each availability zone"
type = any
default = {}
}
variable "fargate_profile_number_of_multi_az" {
description = "How many availability zones should be used for generating fargate profiles from template"
type = number
default = 3
}
variable "admin_iam_roles" {
description = "List of account roles that should have EKS amdin permissions"
type = list(string)
default = []
}
variable "admin_iam_users" {
description = "List of account users that should have EKS amdin permissions"
type = list(string)
default = []
}
variable "eks_iam_roles" {
description = "List of maps with iam roles that should map eks service accounts"
type = list(object({
role_name = string
role_arn = string
role_namespace = string
role_policy_arns = any
}))
default = []
}
variable "tags" {
description = "Tags for EKS"
type = map(any)
default = { Terraform = "true" }
}
variable "apply_kubectl_patch" {
description = "Apply universal_values.yaml to all deployments in kube-system"
type = bool
default = true
}
# AWS EFS CSI DRIVER
variable "enable_aws_efs_csi_driver" {
description = "Install latest AWS EFS CSI driver"
type = bool
default = true
}
variable "aws_efs_csi_driver_config" {
description = "AWS EFS CSI driver configuration"
type = any
default = {}
}
# AWS NODE TERMINATION HANDLER
variable "enable_aws_node_termination_handler" {
description = "Install latest AWS node termination handler"
type = bool
default = true
}
variable "aws_node_termination_handler_config" {
description = "AWS node termination handler configuration"
type = any
default = {}
}
variable "aws_node_termination_handler_sqs" {
description = "AWS Node Termination Handler SQS queue configuration values"
type = any
default = {}
}
variable "aws_node_termination_handler_asg_arns" {
description = "List of Auto Scaling group ARNs that AWS Node Termination Handler will monitor for EC2 events"
type = list(string)
default = []
}
# CERT MANAGER
variable "enable_cert_manager" {
description = "Install latest cert-manager"
type = bool
default = true
}
variable "cert_manager_config" {
description = "Cert manager configuration"
type = any
default = {}
}
variable "cert_manager_route53_hosted_zone_arns" {
description = "List of Route53 Hosted Zone ARNs that are used by cert-manager to create DNS records"
type = list(string)
default = ["arn:aws:route53:::hostedzone/*"]
}
# CLUSTER AUTOSCALER
variable "enable_cluster_autoscaler" {
description = "Install latest cluster autoscaler"
type = bool
default = true
}
variable "cluster_autoscaler_config" {
description = "Cluster autoscaler configuration"
type = any
default = {}
}
# METRICS SERVER
variable "enable_metrics_server" {
description = "Install latest metrics server"
type = bool
default = true
}
variable "metrics_server_config" {
description = "Metrics server configuration"
type = any
default = {}
}
# VPA
variable "enable_vpa" {
description = "Install latest Vertical Pod Autoscaler"
type = bool
default = true
}
variable "vpa_config" {
description = "Vertical Pod Autoscaler configuration"
type = any
default = {}
}
# INGRESS APISIX
variable "enable_ingress_apisix" {
description = "Install ingress Apisix"
type = bool
default = true
}
variable "ingress_apisix_chart_version" {
description = "Ingress Apisix chart version"
type = string
default = null
}
variable "ingress_apisix_namespace" {
description = "Ingress Apisix namespace"
type = string
default = "ingress-apisix"
}
variable "ingress_apisix_set" {
description = "Ingress Apisix helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "ingress_apisix_values" {
description = "Ingress Apisix list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# INGRESS NGINX
variable "enable_ingress_nginx" {
description = "Install ingress Nginx"
type = bool
default = false
}
variable "ingress_nginx_chart_version" {
description = "Ingress Nginx chart version"
type = string
default = null
}
variable "ingress_nginx_namespace" {
description = "Ingress Nginx namespace"
type = string
default = "ingress-nginx"
}
variable "ingress_nginx_set" {
description = "Ingress Nginx helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "ingress_nginx_values" {
description = "Ingress Nginx list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# VICTORIAMETRICS OPERATOR
variable "enable_victoriametrics_operator" {
description = "Install VictoriaMetrics Operator"
type = bool
default = true
}
variable "victoriametrics_operator_chart_version" {
description = "VictoriaMetrics Operator chart version"
type = string
default = null
}
variable "victoriametrics_operator_namespace" {
description = "VictoriaMetrics Operator namespace"
type = string
default = "monitoring"
}
variable "victoriametrics_operator_set" {
description = "VictoriaMetrics Operator helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "victoriametrics_operator_values" {
description = "VictoriaMetrics Operator list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# OPENTELEMETRY OPERATOR
variable "enable_opentelemetry_operator" {
description = "Install Opentelemetry Operator"
type = bool
default = false
}
variable "opentelemetry_operator_chart_version" {
description = "Opentelemetry Operator chart version"
type = string
default = null
}
variable "opentelemetry_operator_namespace" {
description = "Opentelemetry Operator namespace"
type = string
default = "monitoring"
}
variable "opentelemetry_operator_set" {
description = "Opentelemetry Operator helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "opentelemetry_operator_values" {
description = "Opentelemetry Operator list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# CLICKHOUSE OPERATOR
variable "enable_clickhouse_operator" {
description = "Install Clickhouse Operator"
type = bool
default = false
}
variable "clickhouse_operator_chart_version" {
description = "Clickhouse Operator chart version"
type = string
default = null
}
variable "clickhouse_operator_namespace" {
description = "Clickhouse Operator namespace"
type = string
default = "clickhouse"
}
variable "clickhouse_operator_set" {
description = "Clickhouse Operator helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "clickhouse_operator_values" {
description = "Clickhouse Operator list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# GRAFANA OPERATOR
variable "enable_grafana_operator" {
description = "Install Grafana Operator"
type = bool
default = true
}
variable "grafana_operator_chart_version" {
description = "Grafana Operator chart version"
type = string
default = null
}
variable "grafana_operator_namespace" {
description = "Grafana Operator namespace"
type = string
default = "monitoring"
}
variable "grafana_operator_set" {
description = "Grafana Operator helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "grafana_operator_values" {
description = "Grafana Operator list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# VICTORIAMETRICS
variable "enable_victoriametrics" {
description = "Install VictoriaMetrics Stack"
type = bool
default = true
}
variable "victoriametrics_chart_version" {
description = "VictoriaMetrics Stack chart version"
type = string
default = null
}
variable "victoriametrics_namespace" {
description = "VictoriaMetrics Stack namespace"
type = string
default = "monitoring"
}
variable "victoriametrics_set" {
description = "VictoriaMetrics Stack helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "victoriametrics_values" {
description = "VictoriaMetrics Stack list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "victoriametrics_grafana_ingress_enabled" {
description = "Enable VictoriaMetrics Grafana public ingress"
type = bool
default = true
}
variable "victoriametrics_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}
variable "victoriametrics_auth_chart_version" {
description = "VictoriaMetrics Auth chart version"
type = string
default = null
}
variable "victoriametrics_auth_set" {
description = "VictoriaMetrics Auth helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "victoriametrics_auth_values" {
description = "VictoriaMetrics Auth list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "victoriametrics_auth_ingress_enabled" {
description = "Enable VictoriaMetrics Auth public ingress"
type = bool
default = true
}
# GRAFANA
variable "enable_grafana" {
description = "Install Grafana"
type = bool
default = true
}
variable "grafana_chart_version" {
description = "Grafana chart version"
type = string
default = null
}
variable "grafana_namespace" {
description = "Grafana namespace"
type = string
default = "monitoring"
}
variable "grafana_set" {
description = "Grafana helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "grafana_values" {
description = "Grafana list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "grafana_ingress_enabled" {
description = "Enable Grafana public ingress"
type = bool
default = true
}
variable "grafana_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}
# UPTRACE
variable "enable_uptrace" {
description = "Install Uptrace"
type = bool
default = true
}
variable "uptrace_chart_version" {
description = "Uptrace chart version"
type = string
default = null
}
variable "uptrace_namespace" {
description = "Uptrace namespace"
type = string
default = "monitoring"
}
variable "uptrace_set" {
description = "Uptrace helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "uptrace_values" {
description = "Uptrace list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "uptrace_ingress_enabled" {
description = "Enable Uptrace public ingress"
type = bool
default = true
}
variable "uptrace_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}
variable "uptrace_clickhouse_chart_version" {
description = "Uptrace Clickhouse chart version"
type = string
default = null
}
variable "uptrace_clickhouse_set" {
description = "Uptrace Clickhouse helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "uptrace_clickhouse_values" {
description = "Uptrace Clickhouse list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "uptrace_postgresql_chart_version" {
description = "Uptrace Postgresql chart version"
type = string
default = null
}
variable "uptrace_postgresql_set" {
description = "Uptrace Postgresql helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "uptrace_postgresql_values" {
description = "Uptrace Postgresql list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# QRYN
variable "enable_qryn" {
description = "Install Qryn"
type = bool
default = false
}
variable "qryn_chart_version" {
description = "Qryn chart version"
type = string
default = null
}
variable "qryn_namespace" {
description = "Qryn namespace"
type = string
default = "monitoring"
}
variable "qryn_set" {
description = "Qryn helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "qryn_values" {
description = "Qryn list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "qryn_ingress_enabled" {
description = "Enable Qryn public ingress"
type = bool
default = true
}
variable "qryn_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}
variable "qryn_clickhouse_chart_version" {
description = "Qryn Clickhouse chart version"
type = string
default = null
}
variable "qryn_clickhouse_set" {
description = "Qryn Clickhouse helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "qryn_clickhouse_values" {
description = "Qryn Clickhouse list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# OPENOBSERVE
variable "enable_openobserve" {
description = "Install Openobserve"
type = bool
default = false
}
variable "openobserve_chart_version" {
description = "Openobserve chart version"
type = string
default = null
}
variable "openobserve_chart_name" {
description = "Openobserve chart name like openobserve-standalone or openobserve"
type = string
default = "openobserve-standalone"
}
variable "openobserve_namespace" {
description = "Openobserve namespace"
type = string
default = "openobserve"
}
variable "openobserve_set" {
description = "Openobserve helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "openobserve_values" {
description = "Openobserve list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "openobserve_ingress_enabled" {
description = "Enable Openobserve public ingress"
type = bool
default = true
}
variable "openobserve_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}
variable "enable_openobserve_collector" {
description = "Install Openobserve Collector"
type = bool
default = false
}
variable "openobserve_collector_chart_version" {
description = "Openobserve Collector chart version"
type = string
default = null
}
variable "openobserve_collector_namespace" {
description = "Openobserve Collector namespace"
type = string
default = "openobserve-collector"
}
variable "openobserve_collector_set" {
description = "Openobserve Collector helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "openobserve_collector_values" {
description = "Openobserve Collector list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# VECTOR
variable "enable_vector_agent" {
description = "Install Vector Agent"
type = bool
default = true
}
variable "vector_agent_chart_version" {
description = "Vector Agent chart version"
type = string
default = null
}
variable "vector_agent_namespace" {
description = "Vector Agent namespace"
type = string
default = "monitoring"
}
variable "vector_agent_set" {
description = "Vector Agent helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "vector_agent_values" {
description = "Vector Agent list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
# K8S DASHBOARD
variable "enable_kubernetes_dashboard" {
description = "Install Kubernetes Dashboard"
type = bool
default = false
}
variable "kubernetes_dashboard_chart_version" {
description = "Kubernetes Dashboard chart version"
type = string
default = null
}
variable "kubernetes_dashboard_namespace" {
description = "Kubernetes Dashboard namespace"
type = string
default = "kubernetes-dashboard"
}
variable "kubernetes_dashboard_set" {
description = "Kubernetes Dashboard helm value block with custom values to be merged with the values yaml"
type = any
default = []
}
variable "kubernetes_dashboard_values" {
description = "Kubernetes Dashboard list of values in raw yaml to pass to helm. Values will be merged, in order, as Helm does with multiple `-f` options"
type = list(string)
default = [""]
}
variable "kubernetes_dashboard_ingress_enabled" {
description = "Enable Kubernetes Dashboard public ingress"
type = bool
default = false
}
variable "kubernetes_dashboard_cert_manager_issuer" {
description = "Cluster Issuer for Cert Manager used in Ingress"
type = string
default = null
}