-
-
Notifications
You must be signed in to change notification settings - Fork 362
/
variables.tf
1120 lines (946 loc) · 34.9 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
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
variable "hcloud_token" {
description = "Hetzner Cloud API Token."
type = string
sensitive = true
}
variable "k3s_token" {
description = "k3s master token (must match when restoring a cluster)."
type = string
sensitive = true
default = null
}
variable "microos_x86_snapshot_id" {
description = "MicroOS x86 snapshot ID to be used. Per default empty, the most recent image created using createkh will be used"
type = string
default = ""
}
variable "microos_arm_snapshot_id" {
description = "MicroOS ARM snapshot ID to be used. Per default empty, the most recent image created using createkh will be used"
type = string
default = ""
}
variable "ssh_port" {
description = "The main SSH port to connect to the nodes."
type = number
default = 22
validation {
condition = var.ssh_port >= 0 && var.ssh_port <= 65535
error_message = "The SSH port must use a valid range from 0 to 65535."
}
}
variable "ssh_public_key" {
description = "SSH public Key."
type = string
}
variable "ssh_private_key" {
description = "SSH private Key."
type = string
sensitive = true
}
variable "ssh_hcloud_key_label" {
description = "Additional SSH public Keys by hcloud label. e.g. role=admin"
type = string
default = ""
}
variable "ssh_additional_public_keys" {
description = "Additional SSH public Keys. Use them to grant other team members root access to your cluster nodes."
type = list(string)
default = []
}
variable "hcloud_ssh_key_id" {
description = "If passed, a key already registered within hetzner is used. Otherwise, a new one will be created by the module."
type = string
default = null
}
variable "ssh_max_auth_tries" {
description = "The maximum number of authentication attempts permitted per connection."
type = number
default = 2
}
variable "network_region" {
description = "Default region for network."
type = string
default = "eu-central"
}
variable "existing_network_id" {
# Unfortunately, we need this to be a list or null. If we only use a plain
# string here, and check that existing_network_id is null, terraform will
# complain that it cannot set `count` variables based on existing_network_id
# != null, because that id is an output value from
# hcloud_network.your_network.id, which terraform will only know after its
# construction.
description = "If you want to create the private network before calling this module, you can do so and pass its id here. NOTE: make sure to adapt network_ipv4_cidr accordingly to a range which does not collide with your other nodes."
type = list(string)
default = []
nullable = false
validation {
condition = length(var.existing_network_id) == 0 || (can(var.existing_network_id[0]) && length(var.existing_network_id) == 1)
error_message = "If you pass an existing_network_id, it must be enclosed in square brackets: [id]. This is necessary to be able to unambiguously distinguish between an empty network id (default) and a user-supplied network id."
}
}
variable "network_ipv4_cidr" {
description = "The main network cidr that all subnets will be created upon."
type = string
default = "10.0.0.0/8"
}
variable "cluster_ipv4_cidr" {
description = "Internal Pod CIDR, used for the controller and currently for calico/cilium."
type = string
default = "10.42.0.0/16"
}
variable "service_ipv4_cidr" {
description = "Internal Service CIDR, used for the controller and currently for calico/cilium."
type = string
default = "10.43.0.0/16"
}
variable "cluster_dns_ipv4" {
description = "Internal Service IPv4 address of core-dns."
type = string
default = "10.43.0.10"
}
variable "load_balancer_location" {
description = "Default load balancer location."
type = string
default = "fsn1"
}
variable "load_balancer_type" {
description = "Default load balancer server type."
type = string
default = "lb11"
}
variable "load_balancer_disable_ipv6" {
description = "Disable IPv6 for the load balancer."
type = bool
default = false
}
variable "load_balancer_disable_public_network" {
description = "Disables the public network of the load balancer."
type = bool
default = false
}
variable "load_balancer_algorithm_type" {
description = "Specifies the algorithm type of the load balancer."
type = string
default = "round_robin"
}
variable "load_balancer_health_check_interval" {
description = "Specifies the interval at which a health check is performed. Minimum is 3s."
type = string
default = "15s"
}
variable "load_balancer_health_check_timeout" {
description = "Specifies the timeout of a single health check. Must not be greater than the health check interval. Minimum is 1s."
type = string
default = "10s"
}
variable "load_balancer_health_check_retries" {
description = "Specifies the number of times a health check is retried before a target is marked as unhealthy."
type = number
default = 3
}
variable "control_plane_nodepools" {
description = "Number of control plane nodes."
type = list(object({
name = string
server_type = string
location = string
backups = optional(bool)
labels = list(string)
taints = list(string)
count = number
swap_size = optional(string, "")
zram_size = optional(string, "")
kubelet_args = optional(list(string), ["kube-reserved=cpu=250m,memory=1500Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
selinux = optional(bool, true)
placement_group_compat_idx = optional(number, 0)
placement_group = optional(string, null)
}))
default = []
validation {
condition = length(
[for control_plane_nodepool in var.control_plane_nodepools : control_plane_nodepool.name]
) == length(
distinct(
[for control_plane_nodepool in var.control_plane_nodepools : control_plane_nodepool.name]
)
)
error_message = "Names in control_plane_nodepools must be unique."
}
}
variable "agent_nodepools" {
description = "Number of agent nodes."
type = list(object({
name = string
server_type = string
location = string
backups = optional(bool)
floating_ip = optional(bool)
labels = list(string)
taints = list(string)
longhorn_volume_size = optional(number)
swap_size = optional(string, "")
zram_size = optional(string, "")
kubelet_args = optional(list(string), ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
selinux = optional(bool, true)
placement_group_compat_idx = optional(number, 0)
placement_group = optional(string, null)
count = optional(number, null)
nodes = optional(map(object({
server_type = optional(string)
location = optional(string)
backups = optional(bool)
floating_ip = optional(bool)
labels = optional(list(string))
taints = optional(list(string))
longhorn_volume_size = optional(number)
swap_size = optional(string, "")
zram_size = optional(string, "")
kubelet_args = optional(list(string), ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
selinux = optional(bool, true)
placement_group_compat_idx = optional(number, 0)
placement_group = optional(string, null)
append_index_to_node_name = optional(bool, true)
})))
}))
default = []
validation {
condition = length(
[for agent_nodepool in var.agent_nodepools : agent_nodepool.name]
) == length(
distinct(
[for agent_nodepool in var.agent_nodepools : agent_nodepool.name]
)
)
error_message = "Names in agent_nodepools must be unique."
}
validation {
condition = alltrue([for agent_nodepool in var.agent_nodepools : (agent_nodepool.count == null) != (agent_nodepool.nodes == null)])
error_message = "Set either nodes or count per agent_nodepool, not both."
}
validation {
condition = alltrue([for agent_nodepool in var.agent_nodepools :
alltrue([for agent_key, agent_node in coalesce(agent_nodepool.nodes, {}) : can(tonumber(agent_key)) && tonumber(agent_key) == floor(tonumber(agent_key)) && 0 <= tonumber(agent_key) && tonumber(agent_key) < 154])
])
# 154 because the private ip is derived from tonumber(key) + 101. See private_ipv4 in agents.tf
error_message = "The key for each individual node in a nodepool must be a stable integer in the range [0, 153] cast as a string."
}
validation {
condition = sum([for agent_nodepool in var.agent_nodepools : length(coalesce(agent_nodepool.nodes, {})) + coalesce(agent_nodepool.count, 0)]) <= 100
# 154 because the private ip is derived from tonumber(key) + 101. See private_ipv4 in agents.tf
error_message = "Hetzner does not support networks with more than 100 servers."
}
}
variable "cluster_autoscaler_image" {
type = string
default = "docker.io/hetznercloud/cluster-autoscaler"
description = "Image of Kubernetes Cluster Autoscaler for Hetzner Cloud to be used."
}
variable "cluster_autoscaler_version" {
type = string
default = "v1.31.0-hcloud1"
description = "Version of Kubernetes Cluster Autoscaler for Hetzner Cloud. Should be aligned with Kubernetes version"
}
variable "cluster_autoscaler_log_level" {
description = "Verbosity level of the logs for cluster-autoscaler"
type = number
default = 4
validation {
condition = var.cluster_autoscaler_log_level >= 0 && var.cluster_autoscaler_log_level <= 5
error_message = "The log level must be between 0 and 5."
}
}
variable "cluster_autoscaler_log_to_stderr" {
description = "Determines whether to log to stderr or not"
type = bool
default = true
}
variable "cluster_autoscaler_stderr_threshold" {
description = "Severity level above which logs are sent to stderr instead of stdout"
type = string
default = "INFO"
validation {
condition = var.cluster_autoscaler_stderr_threshold == "INFO" || var.cluster_autoscaler_stderr_threshold == "WARNING" || var.cluster_autoscaler_stderr_threshold == "ERROR" || var.cluster_autoscaler_stderr_threshold == "FATAL"
error_message = "The stderr threshold must be one of the following: INFO, WARNING, ERROR, FATAL."
}
}
variable "cluster_autoscaler_extra_args" {
type = list(string)
default = []
description = "Extra arguments for the Cluster Autoscaler deployment."
}
variable "cluster_autoscaler_server_creation_timeout" {
type = number
default = 15
description = "Timeout (in minutes) until which a newly created server/node has to become available before giving up and destroying it."
}
variable "autoscaler_nodepools" {
description = "Cluster autoscaler nodepools."
type = list(object({
name = string
server_type = string
location = string
min_nodes = number
max_nodes = number
labels = optional(map(string), {})
kubelet_args = optional(list(string), ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"])
taints = optional(list(object({
key = string
value = string
effect = string
})), [])
}))
default = []
}
variable "autoscaler_labels" {
description = "Labels for nodes created by the Cluster Autoscaler."
type = list(string)
default = []
}
variable "autoscaler_taints" {
description = "Taints for nodes created by the Cluster Autoscaler."
type = list(string)
default = []
}
variable "hetzner_ccm_version" {
type = string
default = null
description = "Version of Kubernetes Cloud Controller Manager for Hetzner Cloud."
}
variable "hetzner_csi_version" {
type = string
default = null
description = "Version of Container Storage Interface driver for Hetzner Cloud."
}
variable "hetzner_csi_values" {
type = string
default = ""
description = "Additional helm values file to pass to hetzner csi as 'valuesContent' at the HelmChart."
}
variable "restrict_outbound_traffic" {
type = bool
default = true
description = "Whether or not to restrict the outbound traffic."
}
variable "enable_klipper_metal_lb" {
type = bool
default = false
description = "Use klipper load balancer."
}
variable "etcd_s3_backup" {
description = "Etcd cluster state backup to S3 storage"
type = map(any)
sensitive = true
default = {}
}
variable "ingress_controller" {
type = string
default = "traefik"
description = "The name of the ingress controller."
validation {
condition = contains(["traefik", "nginx", "haproxy", "none"], var.ingress_controller)
error_message = "Must be one of \"traefik\" or \"nginx\" or \"haproxy\" or \"none\""
}
}
variable "ingress_replica_count" {
type = number
default = 0
description = "Number of replicas per ingress controller. 0 means autodetect based on the number of agent nodes."
validation {
condition = var.ingress_replica_count >= 0
error_message = "Number of ingress replicas can't be below 0."
}
}
variable "ingress_max_replica_count" {
type = number
default = 10
description = "Number of maximum replicas per ingress controller. Used for ingress HPA. Must be higher than number of replicas."
validation {
condition = var.ingress_max_replica_count >= 0
error_message = "Number of ingress maximum replicas can't be below 0."
}
}
variable "traefik_image_tag" {
type = string
default = ""
description = "Traefik image tag. Useful to use the beta version for new features. Example: v3.0.0-beta5"
}
variable "traefik_autoscaling" {
type = bool
default = true
description = "Should traefik enable Horizontal Pod Autoscaler."
}
variable "traefik_redirect_to_https" {
type = bool
default = true
description = "Should traefik redirect http traffic to https."
}
variable "traefik_pod_disruption_budget" {
type = bool
default = true
description = "Should traefik enable pod disruption budget. Default values are maxUnavailable: 33% and minAvailable: 1."
}
variable "traefik_resource_limits" {
type = bool
default = true
description = "Should traefik enable default resource requests and limits. Default values are requests: 100m & 50Mi and limits: 300m & 150Mi."
}
variable "traefik_additional_ports" {
type = list(object({
name = string
port = number
exposedPort = number
}))
default = []
description = "Additional ports to pass to Traefik. These are the ones that go into the ports section of the Traefik helm values file."
}
variable "traefik_additional_options" {
type = list(string)
default = []
description = "Additional options to pass to Traefik as a list of strings. These are the ones that go into the additionalArguments section of the Traefik helm values file."
}
variable "traefik_additional_trusted_ips" {
type = list(string)
default = []
description = "Additional Trusted IPs to pass to Traefik. These are the ones that go into the trustedIPs section of the Traefik helm values file."
}
variable "traefik_version" {
type = string
default = ""
description = "Version of Traefik helm chart."
}
variable "traefik_values" {
type = string
default = ""
description = "Additional helm values file to pass to Traefik as 'valuesContent' at the HelmChart."
}
variable "nginx_version" {
type = string
default = ""
description = "Version of Nginx helm chart."
}
variable "nginx_values" {
type = string
default = ""
description = "Additional helm values file to pass to nginx as 'valuesContent' at the HelmChart."
}
variable "haproxy_requests_cpu" {
type = string
default = "250m"
description = "Setting for HAProxy controller.resources.requests.cpu"
}
variable "haproxy_requests_memory" {
type = string
default = "400Mi"
description = "Setting for HAProxy controller.resources.requests.memory"
}
variable "haproxy_additional_proxy_protocol_ips" {
type = list(string)
default = []
description = "Additional trusted proxy protocol IPs to pass to haproxy."
}
variable "haproxy_version" {
type = string
default = ""
description = "Version of HAProxy helm chart."
}
variable "haproxy_values" {
type = string
default = ""
description = "Helm values file to pass to haproxy as 'valuesContent' at the HelmChart, overriding the default."
}
variable "allow_scheduling_on_control_plane" {
type = bool
default = false
description = "Whether to allow non-control-plane workloads to run on the control-plane nodes."
}
variable "enable_metrics_server" {
type = bool
default = true
description = "Whether to enable or disable k3s metric server."
}
variable "initial_k3s_channel" {
type = string
default = "v1.29" # Please update kube.tf.example too when changing this variable
description = "Allows you to specify an initial k3s channel."
validation {
condition = contains(["stable", "latest", "testing", "v1.16", "v1.17", "v1.18", "v1.19", "v1.20", "v1.21", "v1.22", "v1.23", "v1.24", "v1.25", "v1.26", "v1.27", "v1.28", "v1.29", "v1.30", "v1.31", "v1.32", "v1.33"], var.initial_k3s_channel)
error_message = "The initial k3s channel must be one of stable, latest or testing, or any of the minor kube versions like v1.26."
}
}
variable "system_upgrade_enable_eviction" {
type = bool
default = true
description = "Whether to directly delete pods during system upgrade (k3s) or evict them. Defaults to true. Disable this on small clusters to avoid system upgrades hanging since pods resisting eviction keep node unschedulable forever. NOTE: turning this off, introduces potential downtime of services of the upgraded nodes."
}
variable "system_upgrade_use_drain" {
type = bool
default = true
description = "Wether using drain (true, the default), which will deletes and transfers all pods to other nodes before a node is being upgraded, or cordon (false), which just prevents schedulung new pods on the node during upgrade and keeps all pods running"
}
variable "automatically_upgrade_k3s" {
type = bool
default = true
description = "Whether to automatically upgrade k3s based on the selected channel."
}
variable "automatically_upgrade_os" {
type = bool
default = true
description = "Whether to enable or disable automatic os updates. Defaults to true. Should be disabled for single-node clusters"
}
variable "extra_firewall_rules" {
type = list(any)
default = []
description = "Additional firewall rules to apply to the cluster."
}
variable "firewall_kube_api_source" {
type = list(string)
default = ["0.0.0.0/0", "::/0"]
description = "Source networks that have Kube API access to the servers."
}
variable "firewall_ssh_source" {
type = list(string)
default = ["0.0.0.0/0", "::/0"]
description = "Source networks that have SSH access to the servers."
}
variable "use_cluster_name_in_node_name" {
type = bool
default = true
description = "Whether to use the cluster name in the node name."
}
variable "cluster_name" {
type = string
default = "k3s"
description = "Name of the cluster."
validation {
condition = can(regex("^[a-z0-9\\-]+$", var.cluster_name))
error_message = "The cluster name must be in the form of lowercase alphanumeric characters and/or dashes."
}
}
variable "base_domain" {
type = string
default = ""
description = "Base domain of the cluster, used for reserve dns."
validation {
condition = can(regex("^(?:(?:(?:[A-Za-z0-9])|(?:[A-Za-z0-9](?:[A-Za-z0-9\\-]+)?[A-Za-z0-9]))+(\\.))+([A-Za-z]{2,})([\\/?])?([\\/?][A-Za-z0-9\\-%._~:\\/?#\\[\\]@!\\$&\\'\\(\\)\\*\\+,;=]+)?$", var.base_domain)) || var.base_domain == ""
error_message = "It must be a valid domain name (FQDN)."
}
}
variable "placement_group_disable" {
type = bool
default = false
description = "Whether to disable placement groups."
}
variable "disable_kube_proxy" {
type = bool
default = false
description = "Disable kube-proxy in K3s (default false)."
}
variable "disable_network_policy" {
type = bool
default = false
description = "Disable k3s default network policy controller (default false, automatically true for calico and cilium)."
}
variable "cni_plugin" {
type = string
default = "flannel"
description = "CNI plugin for k3s."
validation {
condition = contains(["flannel", "calico", "cilium"], var.cni_plugin)
error_message = "The cni_plugin must be one of \"flannel\", \"calico\", or \"cilium\"."
}
}
variable "cilium_egress_gateway_enabled" {
type = bool
default = false
description = "Enables egress gateway to redirect and SNAT the traffic that leaves the cluster."
}
variable "cilium_hubble_enabled" {
type = bool
default = false
description = "Enables Hubble Observability to collect and visualize network traffic."
}
variable "cilium_hubble_metrics_enabled" {
type = list(string)
default = []
description = "Configures the list of Hubble metrics to collect"
}
variable "cilium_ipv4_native_routing_cidr" {
type = string
default = null
description = "Used when Cilium is configured in native routing mode. The CNI assumes that the underlying network stack will forward packets to this destination without the need to apply SNAT. Default: value of \"cluster_ipv4_cidr\""
}
variable "cilium_routing_mode" {
type = string
default = "tunnel"
description = "Set native-routing mode (\"native\") or tunneling mode (\"tunnel\")."
validation {
condition = contains(["tunnel", "native"], var.cilium_routing_mode)
error_message = "The cilium_routing_mode must be one of \"tunnel\" or \"native\"."
}
}
variable "cilium_values" {
type = string
default = ""
description = "Additional helm values file to pass to Cilium as 'valuesContent' at the HelmChart."
}
variable "cilium_version" {
type = string
default = "1.15.1"
description = "Version of Cilium."
}
variable "calico_values" {
type = string
default = ""
description = "Just a stub for a future helm implementation. Now it can be used to replace the calico kustomize patch of the calico manifest."
}
variable "enable_iscsid" {
type = bool
default = false
description = "This is always true when enable_longhorn=true, however, you may also want this enabled if you perform your own installation of longhorn after this module runs."
}
variable "enable_longhorn" {
type = bool
default = false
description = "Whether or not to enable Longhorn."
}
variable "longhorn_version" {
type = string
default = "*"
description = "Version of longhorn."
}
variable "longhorn_helmchart_bootstrap" {
type = bool
default = false
description = "Whether the HelmChart longhorn shall be run on control-plane nodes."
}
variable "longhorn_repository" {
type = string
default = "https://charts.longhorn.io"
description = "By default the official chart which may be incompatible with rancher is used. If you need to fully support rancher switch to https://charts.rancher.io."
}
variable "longhorn_namespace" {
type = string
default = "longhorn-system"
description = "Namespace for longhorn deployment, defaults to 'longhorn-system'"
}
variable "longhorn_fstype" {
type = string
default = "ext4"
description = "The longhorn fstype."
validation {
condition = contains(["ext4", "xfs"], var.longhorn_fstype)
error_message = "Must be one of \"ext4\" or \"xfs\""
}
}
variable "longhorn_replica_count" {
type = number
default = 3
description = "Number of replicas per longhorn volume."
validation {
condition = var.longhorn_replica_count > 0
error_message = "Number of longhorn replicas can't be below 1."
}
}
variable "longhorn_values" {
type = string
default = ""
description = "Additional helm values file to pass to longhorn as 'valuesContent' at the HelmChart."
}
variable "disable_hetzner_csi" {
type = bool
default = false
description = "Disable hetzner csi driver."
}
variable "enable_csi_driver_smb" {
type = bool
default = false
description = "Whether or not to enable csi-driver-smb."
}
variable "csi_driver_smb_version" {
type = string
default = "*"
description = "Version of csi_driver_smb."
}
variable "csi_driver_smb_helmchart_bootstrap" {
type = bool
default = false
description = "Whether the HelmChart csi_driver_smb shall be run on control-plane nodes."
}
variable "csi_driver_smb_values" {
type = string
default = ""
description = "Additional helm values file to pass to csi-driver-smb as 'valuesContent' at the HelmChart."
}
variable "enable_cert_manager" {
type = bool
default = true
description = "Enable cert manager."
}
variable "cert_manager_version" {
type = string
default = "*"
description = "Version of cert_manager."
}
variable "cert_manager_helmchart_bootstrap" {
type = bool
default = false
description = "Whether the HelmChart cert_manager shall be run on control-plane nodes."
}
variable "cert_manager_values" {
type = string
default = ""
description = "Additional helm values file to pass to Cert-Manager as 'valuesContent' at the HelmChart."
}
variable "enable_rancher" {
type = bool
default = false
description = "Enable rancher."
}
variable "rancher_version" {
type = string
default = "*"
description = "Version of rancher."
}
variable "rancher_helmchart_bootstrap" {
type = bool
default = false
description = "Whether the HelmChart rancher shall be run on control-plane nodes."
}
variable "rancher_install_channel" {
type = string
default = "stable"
description = "The rancher installation channel."
validation {
condition = contains(["stable", "latest"], var.rancher_install_channel)
error_message = "The allowed values for the Rancher install channel are stable or latest."
}
}
variable "rancher_hostname" {
type = string
default = ""
description = "The rancher hostname."
validation {
condition = can(regex("^(?:(?:(?:[A-Za-z0-9])|(?:[A-Za-z0-9](?:[A-Za-z0-9\\-]+)?[A-Za-z0-9]))+(\\.))+([A-Za-z]{2,})([\\/?])?([\\/?][A-Za-z0-9\\-%._~:\\/?#\\[\\]@!\\$&\\'\\(\\)\\*\\+,;=]+)?$", var.rancher_hostname)) || var.rancher_hostname == ""
error_message = "It must be a valid domain name (FQDN)."
}
}
variable "lb_hostname" {
type = string
default = ""
description = "The Hetzner Load Balancer hostname, for either Traefik, HAProxy or Ingress-Nginx."
validation {
condition = can(regex("^(?:(?:(?:[A-Za-z0-9])|(?:[A-Za-z0-9](?:[A-Za-z0-9\\-]+)?[A-Za-z0-9]))+(\\.))+([A-Za-z]{2,})([\\/?])?([\\/?][A-Za-z0-9\\-%._~:\\/?#\\[\\]@!\\$&\\'\\(\\)\\*\\+,;=]+)?$", var.lb_hostname)) || var.lb_hostname == ""
error_message = "It must be a valid domain name (FQDN)."
}
}
variable "kubeconfig_server_address" {
type = string
default = ""
description = "The hostname used for kubeconfig."
}
variable "rancher_registration_manifest_url" {
type = string
description = "The url of a rancher registration manifest to apply. (see https://rancher.com/docs/rancher/v2.6/en/cluster-provisioning/registered-clusters/)."
default = ""
sensitive = true
}
variable "rancher_bootstrap_password" {
type = string
default = ""
description = "Rancher bootstrap password."
sensitive = true
validation {
condition = (length(var.rancher_bootstrap_password) >= 48) || (length(var.rancher_bootstrap_password) == 0)
error_message = "The Rancher bootstrap password must be at least 48 characters long."
}
}
variable "rancher_values" {
type = string
default = ""
description = "Additional helm values file to pass to Rancher as 'valuesContent' at the HelmChart."
}
variable "kured_version" {
type = string
default = null
description = "Version of Kured."
}
variable "kured_options" {
type = map(string)
default = {}
}
variable "block_icmp_ping_in" {
type = bool
default = false
description = "Block entering ICMP ping."
}
variable "use_control_plane_lb" {
type = bool
default = false
description = "When this is enabled, rather than the first node, all external traffic will be routed via a control-plane loadbalancer, allowing for high availability."
}
variable "control_plane_lb_type" {
type = string
default = "lb11"
description = "The type of load balancer to use for the control plane load balancer. Defaults to lb11, which is the cheapest one."
}
variable "control_plane_lb_enable_public_interface" {
type = bool
default = true
description = "Enable or disable public interface for the control plane load balancer . Defaults to true."
}
variable "dns_servers" {
type = list(string)
default = [
"185.12.64.1",
"185.12.64.2",
"2a01:4ff:ff00::add:1",
]
description = "IP Addresses to use for the DNS Servers, set to an empty list to use the ones provided by Hetzner. The length is limited to 3 entries, more entries is not supported by kubernetes"
validation {
condition = length(var.dns_servers) <= 3
error_message = "The list must have no more than 3 items."
}
}
variable "address_for_connectivity_test" {
type = string
default = "1.1.1.1"
description = "Before installing k3s, we actually verify that there is internet connectivity. By default we ping 1.1.1.1, but if you use a proxy, you may simply want to ping that proxy instead (assuming that the proxy has its own checks for internet connectivity)."
}
variable "additional_k3s_environment" {
type = map(any)
default = {}
description = "Additional environment variables for the k3s binary. See for example https://docs.k3s.io/advanced#configuring-an-http-proxy ."
}
variable "preinstall_exec" {
type = list(string)
default = []
description = "Additional to execute before the install calls, for example fetching and installing certs."
}
variable "postinstall_exec" {
type = list(string)
default = []
description = "Additional to execute after the install calls, for example restoring a backup."
}
variable "extra_kustomize_deployment_commands" {
type = string
default = ""
description = "Commands to be executed after the `kubectl apply -k <dir>` step."
}
variable "extra_kustomize_parameters" {
type = map(any)
default = {}
description = "All values will be passed to the `kustomization.tmp.yml` template."
}
variable "create_kubeconfig" {
type = bool
default = true
description = "Create the kubeconfig as a local file resource. Should be disabled for automatic runs."
}
variable "create_kustomization" {
type = bool
default = true
description = "Create the kustomization backup as a local file resource. Should be disabled for automatic runs."
}
variable "export_values" {