-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
649 lines (592 loc) · 17.4 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
# k3s-fcos-cluster
variable "generate_etc_hosts" {
type = bool
default = null
description = "Whether /etc/hosts entries shjould be generated for all cluster nodes created. Default depends if `etc_hosts` set"
}
variable "k3s_channel" {
type = string
default = null
description = "K3s installation channel"
}
variable "origin_server" {
type = string
default = ""
description = "Server host to connect nodes to (ex: https://example:6443)"
nullable = false
}
variable "token" {
type = string
default = null
sensitive = true
description = "K3s token for servers to join the cluster, ang agents if `agent_token` is not set"
}
variable "agent_token" {
type = string
default = null
sensitive = true
description = "K3s token for agents to join the cluster"
}
variable "kubelet_config" {
type = object(
{
version = optional(string)
content = optional(string)
}
)
description = "Contains the configuration for the Kubelet"
default = null
}
variable "node_groups" {
type = list(
object(
{
name = string
mode = string
# general
butane_snippets_additional = optional(list(string))
periodic_updates = optional(
object(
{
time_zone = optional(string, "")
windows = list(
object(
{
days = list(string)
start_time = string
length_minutes = string
}
)
)
}
)
)
k3s_channel = optional(string)
rollout_wariness = optional(string)
ssh_authorized_key = optional(string)
nameservers = optional(list(string))
grub_password_hash = optional(string)
timezone = optional(string)
keymap = optional(string)
interface_name = optional(string)
etc_hosts_extra = optional(string)
systemd_pager = optional(string)
sysctl = optional(map(string))
sync_time_with_host = optional(bool)
do_not_countme = optional(bool)
wait_for_lease = optional(bool)
qemu_agent = optional(bool)
do_not_countme = optional(bool)
additional_rpms = optional(
object(
{
cmd_pre = optional(list(string), [])
list = optional(list(string), [])
cmd_post = optional(list(string), [])
}
)
)
# k3s config for this node_group
k3s_config = optional(
object(
{
envvars = optional(list(string))
parameters = optional(list(string))
selinux = optional(bool)
data_dir = optional(string)
script_url = optional(string)
script_sha256sum = optional(string)
repo_baseurl = optional(string)
repo_gpgkey = optional(string)
testing_repo = optional(bool)
testing_repo_baseurl = optional(string)
testing_repo_gpgkey = optional(string)
}
)
)
k3s_fleetlock = optional(
object(
{
version = optional(string)
namespace = optional(string)
cluster_ip = optional(string)
group = optional(string)
node_selectors = optional(list(map(string)), [])
tolerations = optional(
list(
object(
{
key = string
operator = string
value = optional(string)
effect = string
}
)
), []
)
}
)
)
kubelet_config = optional(
object(
{
version = optional(string)
content = optional(string)
}
)
)
# general libvirt node
cpu_mode = optional(string)
vcpu = optional(number)
memory = optional(number)
libosinfo_id = optional(string)
xslt_snippet = optional(string)
arch = optional(string)
cmdline = optional(list(map(string)))
emulator = optional(string)
machine = optional(string)
firmware = optional(string)
nvram = optional(
object(
{
file = string
template = optional(string)
}
)
)
root_volume_pool = optional(string)
root_volume_size = optional(number)
root_base_volume_name = optional(string)
root_base_volume_pool = optional(string)
log_volume = optional(bool)
log_volume_size = optional(number)
log_volume_pool = optional(string)
data_volume = optional(bool)
data_volume_pool = optional(string)
data_volume_size = optional(number)
backup_volume = optional(bool)
backup_volume_pool = optional(string)
backup_volume_size = optional(number)
ignition_pool = optional(string)
autostart = optional(bool)
wait_for_lease = optional(bool)
network_id = optional(string)
network_bridge = optional(string)
network_name = optional(string)
additional_disks = optional(
list(
object(
{
volume_id = optional(string)
url = optional(string)
file = optional(string)
block_device = optional(string)
scsi = optional(bool)
wwn = optional(string)
}
)
)
)
nodes = list(
object(
{
# libvirt node
fqdn = string
cidr_ip_address = optional(string)
mac = optional(string)
# specific libvirt node
cpu_mode = optional(string)
vcpu = optional(number)
memory = optional(number)
libosinfo_id = optional(string)
xslt_snippet = optional(string)
arch = optional(string)
cmdline = optional(list(map(string)))
emulator = optional(string)
machine = optional(string)
firmware = optional(string)
nvram = optional(
object(
{
file = string
template = optional(string)
}
)
)
root_volume_pool = optional(string)
root_volume_size = optional(number)
root_base_volume_name = optional(string)
root_base_volume_pool = optional(string)
log_volume = optional(bool)
log_volume_size = optional(number)
log_volume_pool = optional(string)
data_volume = optional(bool)
data_volume_pool = optional(string)
data_volume_size = optional(number)
backup_volume = optional(bool)
backup_volume_pool = optional(string)
backup_volume_size = optional(number)
ignition_pool = optional(string)
autostart = optional(bool)
wait_for_lease = optional(bool)
network_id = optional(string)
network_bridge = optional(string)
network_name = optional(string)
additional_disks = optional(
list(
object(
{
volume_id = optional(string)
url = optional(string)
file = optional(string)
block_device = optional(string)
scsi = optional(bool)
wwn = optional(string)
}
)
)
)
}
)
)
}
)
)
description = "List of node groups"
validation {
condition = alltrue(
flatten([
for node_group in var.node_groups :
[for node in node_group.nodes : node.cidr_ip_address == null ? true : can(cidrhost(node.cidr_ip_address, 1))]
])
)
error_message = "Check cidr_ip_address format"
}
validation {
condition = alltrue([
for node_group in var.node_groups : contains(["bootstrap", "server", "agent"], node_group.mode)
])
error_message = <<-TEMPLATE
"Invalid input, options: "bootstrap", "server", "agent":"
"bootstrap": a server node of group to bootstrap a cluster
"server": start a node group of server
"agent": start a node group of agents
TEMPLATE
}
validation {
condition = length(
[
for node_group in var.node_groups : true if contains(["bootstrap"], node_group.mode)
]
) <= 1
error_message = "A max of one node group should be in \"bootstrap\" mode"
}
validation {
condition = length(var.node_groups.*.name) == length(distinct(var.node_groups.*.name))
error_message = "Node group names should be unique"
}
}
# butane custom
variable "secret_encryption_key" {
type = string
default = null
sensitive = true
description = "Set an specific secret encryption (inteneded only for bootstrap)"
}
variable "qemu_agent" {
type = bool
description = "Install qemu guest agent"
default = null
}
variable "butane_snippets_additional" {
type = list(string)
description = "Additional butane snippets"
default = []
}
# butane common
variable "ssh_authorized_key" {
type = string
description = "Authorized ssh key for core user"
}
variable "nameservers" {
type = list(string)
description = "List of nameservers for VMs"
default = null
}
variable "timezone" {
type = string
description = "Timezone for VMs as listed by `timedatectl list-timezones`"
default = null
}
variable "systemd_pager" {
type = string
description = "Systemd pager"
default = null
}
variable "sysctl" {
description = "Additional kernel tuning in sysctl.d"
type = map(string)
default = null
}
variable "do_not_countme" {
type = bool
description = "Disable Fedora CoreOS infrastructure count me feature"
default = null
}
variable "rollout_wariness" {
type = string
description = "Wariness to update, 1.0 (very cautious) to 0.0 (very eager)"
default = null
}
variable "periodic_updates" {
type = object(
{
time_zone = optional(string, "")
windows = list(
object(
{
days = list(string)
start_time = string
length_minutes = string
}
)
)
}
)
description = <<-TEMPLATE
Only reboot for updates during certain timeframes
{
time_zone = "localtime"
windows = [
{
days = ["Sat"],
start_time = "23:30",
length_minutes = "60"
},
{
days = ["Sun"],
start_time = "00:30",
length_minutes = "60"
}
]
}
TEMPLATE
default = null
}
variable "interface_name" {
type = string
description = "Network interface name"
default = null
}
variable "keymap" {
type = string
description = "Keymap"
default = null
}
variable "sync_time_with_host" {
type = bool
description = "Sync guest time with the kvm host"
default = null
}
variable "etc_hosts" {
type = list(
object(
{
ip = string
hostname = string
fqdn = string
}
)
)
description = "/etc/host list"
default = null
}
variable "etc_hosts_extra" {
type = string
description = "/etc/host extra block"
default = null
}
variable "additional_rpms" {
type = object(
{
cmd_pre = optional(list(string), [])
list = optional(list(string), [])
cmd_post = optional(list(string), [])
}
)
description = "Additional rpms to install during boot using rpm-ostree, along with any pre or post command"
default = null
}
# libvirt node
variable "cpu_mode" {
type = string
description = "Libvirt default cpu mode for VMs"
default = null
}
variable "vcpu" {
type = number
description = "Node default vcpu count"
default = null
}
variable "memory" {
type = number
description = "Node default memory in MiB"
default = null
}
variable "libosinfo_id" {
type = string
description = "Id for libosinfo/os type. See https://gitlab.com/libosinfo/osinfo-db/-/tree/main"
default = null
}
variable "xslt_snippet" {
type = string
description = "Snippet specifying XSLT to transform the generated XML definition before creating the domain."
default = null
}
variable "arch" {
type = string
description = "The architecture for the VM (probably x86_64 or i686), you normally won't need to set this unless you are building a special VM"
default = null
}
variable "cmdline" {
type = list(map(string))
description = "Arguments to the kernel"
default = []
}
variable "emulator" {
type = string
description = "The path of the emulator to use"
default = null
}
variable "machine" {
type = string
description = "The machine type, you normally won't need to set this unless you are running on a platform that defaults to the wrong machine type for your template"
default = null
}
variable "firmware" {
type = string
description = "The UEFI rom images for exercising UEFI secure boot in a qemu environment."
default = null
}
variable "nvram" {
type = object(
{
file = string
template = optional(string)
}
)
description = "This block allows specifying the following attributes related to the nvram"
default = null
}
variable "root_volume_pool" {
type = string
description = "Node default root volume pool"
default = null
}
variable "root_volume_size" {
type = number
description = "Node default root volume size in bytes"
default = null
}
variable "root_base_volume_name" {
type = string
description = "Node default base root volume name"
default = null
}
variable "root_base_volume_pool" {
type = string
description = "Node default base root volume pool"
default = null
}
variable "log_volume" {
type = bool
description = "Create node log volume"
default = null
}
variable "log_volume_pool" {
type = string
description = "Node default log volume pool"
default = null
}
variable "log_volume_size" {
type = number
description = "Node default log volume size in bytes"
default = null
}
variable "data_volume" {
type = bool
description = "Create node data volume"
default = null
}
variable "data_volume_pool" {
type = string
description = "Node default data volume pool"
default = null
}
variable "data_volume_size" {
type = number
description = "Node default data volume size in bytes"
default = null
}
variable "backup_volume" {
type = bool
description = "Create node backup volume"
default = null
}
variable "backup_volume_pool" {
type = string
description = "Node default backup volume pool"
default = null
}
variable "backup_volume_size" {
type = number
description = "Node default backup volume size in bytes"
default = null
}
variable "ignition_pool" {
type = string
description = "Default ignition files pool"
default = null
}
variable "wait_for_lease" {
type = bool
description = "Wait for network lease"
default = null
}
variable "autostart" {
type = bool
description = "Autostart with libvirt host"
default = null
}
variable "network_bridge" {
type = string
description = "Libvirt default network bridge name for VMs"
default = null
}
variable "network_id" {
type = string
description = "Libvirt default network id for VMs"
default = null
}
variable "network_name" {
type = string
description = "Libvirt default network name for VMs"
default = null
}
variable "additional_disks" {
type = list(
object(
{
volume_id = optional(string)
url = optional(string)
file = optional(string)
block_device = optional(string)
scsi = optional(bool)
wwn = optional(string)
}
)
)
description = "An array of one or more disks to attach to the domain. See [docs](https://registry.terraform.io/providers/dmacvicar/libvirt/0.7.1/docs/resources/domain#handling-disks)"
default = []
nullable = false
}