From 15285e029e64624dfad4b2d645478f874fd8cc6b Mon Sep 17 00:00:00 2001 From: Imran Pochi Date: Thu, 18 Feb 2021 17:59:52 +0530 Subject: [PATCH] baremetal: splitting up matchbox into a separate module. This commit restructures the baremetal terraform module to split the flatcar provisioning as a separate module `matchbox-flatcar`. The new module takes care of setting up matchbox profiles and groups. This makes it much easier to use this new module for other projects and possibly the matchbox-flatcar module could maybe live in its own repository in the future. Signed-off-by: Imran Pochi --- .../kubernetes/controller_profiles.tf | 17 ++++ .../flatcar-linux/kubernetes/groups.tf | 43 -------- .../flatcar-linux/kubernetes/ssh.tf | 4 +- .../kubernetes/worker_profiles.tf | 17 ++++ .../matchbox-flatcar/groups.tf | 25 +++++ .../profiles.tf | 48 +++------ .../templates}/install.yaml.tmpl | 4 +- .../matchbox-flatcar/variables.tf | 72 ++++++++++++++ .../matchbox-flatcar/versions.tf | 18 ++++ pkg/assets/generated_assets.go | 99 +++++++++++++------ 10 files changed, 236 insertions(+), 111 deletions(-) create mode 100644 assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf delete mode 100644 assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf create mode 100644 assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf create mode 100644 assets/terraform-modules/matchbox-flatcar/groups.tf rename assets/terraform-modules/{bare-metal/flatcar-linux/kubernetes => matchbox-flatcar}/profiles.tf (55%) rename assets/terraform-modules/{bare-metal/flatcar-linux/kubernetes/cl => matchbox-flatcar/templates}/install.yaml.tmpl (90%) create mode 100644 assets/terraform-modules/matchbox-flatcar/variables.tf create mode 100644 assets/terraform-modules/matchbox-flatcar/versions.tf diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf new file mode 100644 index 000000000..a4dab57c8 --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf @@ -0,0 +1,17 @@ +module "controller_profile" { + source = "../../../matchbox-flatcar" + count = length(var.controller_names) + node_name = var.controller_names[count.index] + node_mac = var.controller_macs[count.index] + download_protocol = var.download_protocol + os_channel = var.os_channel + os_version = var.os_version + http_endpoint = var.matchbox_http_endpoint + kernel_args = var.kernel_args + install_disk = var.install_disk + install_to_smallest_disk = var.install_to_smallest_disk + container_linux_oem = var.container_linux_oem + ssh_keys = var.ssh_keys + ignition_clc_config = module.controller[count.index].clc_config + cached_install = var.cached_install +} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf deleted file mode 100644 index dcd4282a4..000000000 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf +++ /dev/null @@ -1,43 +0,0 @@ -resource "matchbox_group" "install" { - count = length(var.controller_names) + length(var.worker_names) - - name = format( - "install-%s", - concat(var.controller_names, var.worker_names)[count.index] - ) - - profile = var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install[count.index].name : matchbox_profile.flatcar-install[count.index].name - selector = { - mac = concat(var.controller_macs, var.worker_macs)[count.index] - } -} - -resource "matchbox_group" "controller" { - count = length(var.controller_names) - name = format( - "%s-%s", - var.cluster_name, - var.controller_names[count.index] - ) - profile = matchbox_profile.controllers[count.index].name - - selector = { - mac = var.controller_macs[count.index] - os = "installed" - } -} - -resource "matchbox_group" "worker" { - count = length(var.worker_names) - name = format( - "%s-%s", - var.cluster_name, - var.worker_names[count.index] - ) - profile = matchbox_profile.workers[count.index].name - - selector = { - mac = var.worker_macs[count.index] - os = "installed" - } -} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf index 368dee48a..4447f4b54 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf @@ -5,9 +5,7 @@ resource "null_resource" "copy-controller-secrets" { # Without depends_on, remote-exec could start and wait for machines before # matchbox groups are written, causing a deadlock. depends_on = [ - matchbox_group.install, - matchbox_group.controller, - matchbox_group.worker, + module.controller_profile, ] connection { diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf new file mode 100644 index 000000000..14ba7f2d6 --- /dev/null +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf @@ -0,0 +1,17 @@ +module "worker_profile" { + source = "../../../matchbox-flatcar" + count = length(var.worker_names) + node_name = var.worker_names[count.index] + node_mac = var.worker_macs[count.index] + download_protocol = var.download_protocol + os_channel = var.os_channel + os_version = var.os_version + http_endpoint = var.matchbox_http_endpoint + kernel_args = var.kernel_args + install_disk = var.install_disk + install_to_smallest_disk = var.install_to_smallest_disk + container_linux_oem = var.container_linux_oem + ssh_keys = var.ssh_keys + ignition_clc_config = module.worker[count.index].clc_config + cached_install = var.cached_install +} diff --git a/assets/terraform-modules/matchbox-flatcar/groups.tf b/assets/terraform-modules/matchbox-flatcar/groups.tf new file mode 100644 index 000000000..6f994a29b --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/groups.tf @@ -0,0 +1,25 @@ +resource "matchbox_group" "install" { + name = format( + "install-%s", + var.node_name + ) + + profile = var.cached_install == true ? matchbox_profile.cached-flatcar-linux-install.name : matchbox_profile.flatcar-install.name + selector = { + mac = var.node_mac + } +} + +resource "matchbox_group" "node" { + name = format( + "%s", + var.node_name + ) + profile = matchbox_profile.node.name + + selector = { + mac = var.node_mac + os = "installed" + } +} + diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf b/assets/terraform-modules/matchbox-flatcar/profiles.tf similarity index 55% rename from assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf rename to assets/terraform-modules/matchbox-flatcar/profiles.tf index 71503ae46..7d2734181 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf +++ b/assets/terraform-modules/matchbox-flatcar/profiles.tf @@ -1,10 +1,7 @@ -// Flatcar Container Linux install profile (from release.flatcar-linux.net) resource "matchbox_profile" "flatcar-install" { - count = length(var.controller_names) + length(var.worker_names) name = format( - "%s-flatcar-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] + "flatcar-install-%s", + var.node_name ) kernel = "${var.download_protocol}://${var.os_channel}.release.flatcar-linux.net/amd64-usr/${var.os_version}/flatcar_production_pxe.vmlinuz" @@ -15,17 +12,17 @@ resource "matchbox_profile" "flatcar-install" { args = flatten([ "initrd=flatcar_production_pxe_image.cpio.gz", - "ignition.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", + "ignition.config.url=${var.http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "flatcar.first_boot=yes", "console=tty0", "console=ttyS0", var.kernel_args, ]) - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { + container_linux_config = templatefile("${path.module}/templates/install.yaml.tmpl", { os_channel = var.os_channel os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) + ignition_endpoint = format("%s/ignition", var.http_endpoint) install_disk = var.install_disk container_linux_oem = var.container_linux_oem ssh_keys = jsonencode(var.ssh_keys) @@ -38,11 +35,9 @@ resource "matchbox_profile" "flatcar-install" { // Flatcar Container Linux Install profile (from matchbox /assets cache) // Note: Admin must have downloaded os_version into matchbox assets/flatcar. resource "matchbox_profile" "cached-flatcar-linux-install" { - count = length(var.controller_names) + length(var.worker_names) name = format( - "%s-cached-flatcar-linux-install-%s", - var.cluster_name, - concat(var.controller_names, var.worker_names)[count.index] + "cached-flatcar-linux-install-%s", + var.node_name ) kernel = "/assets/flatcar/${var.os_version}/flatcar_production_pxe.vmlinuz" @@ -53,44 +48,31 @@ resource "matchbox_profile" "cached-flatcar-linux-install" { args = flatten([ "initrd=flatcar_production_pxe_image.cpio.gz", - "ignition.config.url=${var.matchbox_http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", + "ignition.config.url=${var.http_endpoint}/ignition?uuid=$${uuid}&mac=$${mac:hexhyp}", "flatcar.first_boot=yes", "console=tty0", "console=ttyS0", var.kernel_args, ]) - container_linux_config = templatefile("${path.module}/cl/install.yaml.tmpl", { + container_linux_config = templatefile("${path.module}/templates/install.yaml.tmpl", { os_channel = var.os_channel os_version = var.os_version - ignition_endpoint = format("%s/ignition", var.matchbox_http_endpoint) + ignition_endpoint = format("%s/ignition", var.http_endpoint) install_disk = var.install_disk container_linux_oem = var.container_linux_oem ssh_keys = jsonencode(var.ssh_keys) install_to_smallest_disk = var.install_to_smallest_disk # profile uses -b baseurl to install from matchbox cache - baseurl_flag = "-b ${var.matchbox_http_endpoint}/assets/flatcar" + baseurl_flag = "-b ${var.http_endpoint}/assets/flatcar" }) } -// Kubernetes Controller profiles -resource "matchbox_profile" "controllers" { - count = length(var.controller_names) +resource "matchbox_profile" "node" { name = format( - "%s-controller-%s", - var.cluster_name, - var.controller_names[count.index] + "node-%s", + var.node_name ) - raw_ignition = module.controller[count.index].clc_config + raw_ignition = var.ignition_clc_config } -// Kubernetes Worker profiles -resource "matchbox_profile" "workers" { - count = length(var.worker_names) - name = format( - "%s-worker-%s", - var.cluster_name, - var.worker_names[count.index] - ) - raw_ignition = module.worker[count.index].clc_config -} diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl similarity index 90% rename from assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl rename to assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl index 2182ced0f..c395fd304 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl +++ b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl @@ -12,9 +12,9 @@ systemd: ExecStart=/opt/installer [Install] WantedBy=multi-user.target - # Avoid using the standard SSH port so terraform apply cannot SSH until + # Avoid using the standard SSH port so Terraform apply cannot SSH until # post-install. But admins may SSH to debug disk install problems. - # After install, sshd will use port 22 and users/terraform can connect. + # After install, sshd will use port 22 and users/Terraform can connect. - name: sshd.socket dropins: - name: 10-sshd-port.conf diff --git a/assets/terraform-modules/matchbox-flatcar/variables.tf b/assets/terraform-modules/matchbox-flatcar/variables.tf new file mode 100644 index 000000000..77d3e6e0e --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/variables.tf @@ -0,0 +1,72 @@ +variable "http_endpoint" { + type = string + description = "Matchbox HTTP read-only endpoint (e.g. http://matchbox.example.com:8080)." +} + +variable "os_channel" { + type = string + description = "Flatcar Container Linux channel to install from (stable, beta, alpha, edge)." + default = "stable" +} + +variable "os_version" { + type = string + description = "Flatcar Container Linux version to install (for example '2191.5.0' - see https://www.flatcar-linux.org/releases/)." + default = "current" +} + +variable "download_protocol" { + type = string + description = "Protocol iPXE should use to download the kernel and initrd. Defaults to https, which requires iPXE compiled with crypto support. Unused if cached_install is true." + default = "https" +} + +variable "cached_install" { + type = bool + description = "Whether the operating system should PXE boot and install from matchbox /assets cache. Note that the admin must have downloaded the os_version into matchbox assets." + default = false +} + +variable "install_disk" { + type = string + description = "Disk device to which the install profiles should install the operating system (e.g. /dev/sda)." + default = "/dev/sda" +} + +variable "container_linux_oem" { + type = string + description = "DEPRECATED: Specify an OEM image id to use as base for the installation (e.g. ami, vmware_raw, xen) or leave blank for the default image." + default = "" +} + +variable "kernel_args" { + type = list(string) + description = "Additional kernel arguments to provide at PXE boot." + default = [] +} + +variable "install_to_smallest_disk" { + type = bool + description = "Install Flatcar Container Linux to the smallest disk." + default = false +} + +variable "ssh_keys" { + type = list(string) + description = "SSH public keys for user 'core'." +} + +variable "ignition_clc_config" { + type = string + description = "Ignition CLC snippets to include in the configuration." +} + +variable "node_name" { + type = string + description = "Name of the node/machine." +} + +variable "node_mac" { + type = string + description = "MAC address identifying the node/machine (e.g. 52:54:00:a1:9c:ae)." +} diff --git a/assets/terraform-modules/matchbox-flatcar/versions.tf b/assets/terraform-modules/matchbox-flatcar/versions.tf new file mode 100644 index 000000000..878d1c33a --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/versions.tf @@ -0,0 +1,18 @@ +terraform { + required_version = ">= 0.13" + + required_providers { + template = { + source = "hashicorp/template" + version = "2.2.0" + } + matchbox = { + source = "poseidon/matchbox" + version = "0.4.1" + } + random = { + source = "hashicorp/random" + version = "3.0.0" + } + } +} diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 172d47e5f..d3332c51a 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -5963,17 +5963,6 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x94\x41\x6f\xdb\x3c\x0c\x86\xef\xfa\x15\x44\x8a\x02\xed\x87\x7e\x5e\x2f\x03\xb6\x43\x6e\xdb\x69\xc7\x1d\x8b\x82\x50\x24\xda\x11\x62\x8b\x06\x49\x67\x29\x86\xfd\xf7\x41\xb1\x93\x78\x8d\xd3\x20\x97\xe8\x7d\x5e\x91\x14\xc9\xdc\xc1\x4f\x6a\xeb\xff\xb7\xac\x46\x11\x7e\x0c\x1b\x92\x4c\x46\x0a\x5e\x95\x4c\xe1\x61\x37\x6c\x28\x70\xae\x53\xf3\x04\x9d\xcf\xa9\x26\x35\x7d\x74\x1d\xc7\xa1\x25\x58\x6d\x98\xad\x20\x2b\xf8\xed\x00\x94\x07\x09\x04\x6b\x58\x55\xd5\xa7\xf1\x7b\x06\x9c\x03\x08\xed\xa0\x46\x82\xd9\x77\x85\xda\x7b\xa9\xe6\x47\x0e\xc0\xf7\x09\x95\x64\x4f\xa2\x00\x6b\x78\xa9\x59\x3a\x6f\x0f\xab\x7b\xad\xee\x75\xf5\x74\x65\x19\x4f\x76\x5f\x14\x23\x77\x3e\xe5\xe3\xe1\xe3\xab\x03\xb8\x83\xef\x3e\x6c\x21\x65\x35\x9f\x03\x01\xd7\x10\x38\x9b\x70\xdb\x92\xc0\x94\x7f\x43\x99\xc4\x97\x7a\x6d\x4b\xa0\x25\x2d\x25\x2b\x2c\x59\x88\xa7\x4c\x2a\x07\xff\xfc\x86\x85\xcf\x7a\xba\xb2\xba\x04\x79\x79\x7e\xad\xe6\xb6\xd3\x2d\x94\x63\xcf\x29\xdb\xc2\x3d\x6b\x78\x29\xb9\x1f\x1f\x1f\x63\x92\xa5\x48\x47\xac\x54\x7d\xa6\x1c\x40\x26\xfb\xc5\xb2\xc3\xce\x86\x0f\x1c\x33\x6a\xe6\x49\x3d\xfa\xc1\x38\x92\x51\xb0\xc4\x19\x3b\xb2\x2d\xc7\x77\x9e\x1b\x94\x03\xe8\x39\x62\x48\xf1\x56\xb2\xd3\x3d\x27\xaa\x8c\x09\xc9\x3e\x05\xba\x69\x1a\x0d\x73\x6a\x36\x3b\x53\x9f\x75\xa8\xeb\x74\xb8\x32\x2d\x52\xe5\xe1\xb3\xdf\xb4\x84\x42\x3d\x8b\xa5\xdc\x2c\x87\x7c\x4f\x5d\x8c\xbe\x69\x84\x1a\x5f\x0a\xff\xc0\x38\xa3\x1c\x40\x19\x7b\xf4\x7d\x1a\xdb\x8f\x74\x30\xf1\x58\xb7\xbe\xd1\xb9\xf5\x36\x75\xdc\x18\x12\x53\xdc\xfb\x36\xc5\x64\x6f\xd8\x93\x24\x8e\xb8\xe5\x41\xf4\x54\xf1\x6d\xc2\x1d\xd7\xe0\x5b\xd2\x92\xdc\x38\xe1\xd4\xd6\x30\x2d\x7b\x09\xdc\x92\x95\xe1\x8e\x23\x82\x45\xc6\x51\xc6\x49\x9e\xa2\x7c\x40\x94\x28\x65\xcb\xd5\xc4\xf7\x68\xbc\xa3\xac\x53\x7d\x81\x73\xf0\xf6\x70\xb5\x19\xd5\x7f\xd5\x3b\xc7\xd3\x69\x7d\xca\xac\x2d\x01\x8f\x97\x5e\x58\xab\x78\x56\x61\x0d\x26\x03\x1d\xd5\x20\x6f\xbd\x61\x19\x34\x13\x5f\xd7\x29\x5c\xda\x73\x25\x95\xac\x53\x93\x59\x08\x0f\x9f\x9f\xbf\x62\xc8\x18\xb6\x14\x76\x93\x63\x49\x3a\xf6\x83\x73\x36\xf1\x61\x87\x9d\x3f\x94\xc7\xc6\xc0\x72\xfe\x2f\x5b\x14\xdd\x1f\xf7\x37\x00\x00\xff\xff\x89\x1e\xe9\x48\x66\x05\x00\x00"), }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl": &vfsgen۰DirInfo{ - name: "cl", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl": &vfsgen۰CompressedFileInfo{ - name: "install.yaml.tmpl", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1407, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x8f\xe3\x36\x0c\xbd\xcf\xaf\x60\x67\xd3\x9e\x6a\x27\x1b\xa0\x17\x03\x41\xb1\x5b\x14\x68\x81\x9e\x9a\x7e\x1c\xb6\x0b\x43\xb1\xe8\x44\x1d\x99\xf2\x90\xd4\xcc\xb8\x6e\xf6\xb7\x17\x72\x62\x27\x99\x64\xd0\x9b\x4c\x3e\x3e\x3d\x92\xcf\xca\xb2\xec\x4e\x3a\x51\x6c\x6c\x71\x07\x10\xc9\xa9\xa4\x03\x40\x06\x64\x1a\x2c\xc0\x91\xa8\xf1\x1e\x39\x17\xe4\x27\x57\xe1\x90\x05\x40\x32\x1b\x8f\x05\x28\xc7\x31\x54\x05\x52\x24\x95\x02\xfe\x3d\x46\x00\x3e\xfd\x4e\x4e\x3f\x4f\x9f\xbf\xe2\x63\x74\x8c\xb2\x22\xd4\xe7\xc0\x0f\x59\x20\xef\x08\x73\x35\xbc\x45\x9d\x60\x1f\x6a\x45\xfe\x1f\xcc\xa7\xf5\x41\xcf\x89\xfc\xb7\xae\xc5\x95\xb8\xa6\xf5\x38\xc5\x7e\x7c\xc1\x6a\xad\x86\x75\x35\x0f\xad\xce\xa7\x6e\x4e\x34\x3f\x1f\x42\x27\x9a\x3f\x0d\x29\xda\x8f\xdd\xaa\x89\x5e\x5d\x16\x05\xf9\xfc\xee\x77\xf0\xe1\x29\x38\x0b\x51\x1c\x6d\x41\x77\x08\xa2\x86\xac\x61\x0b\xeb\xf5\x4f\xd0\x06\x56\x90\x00\x8a\xcc\xa6\x0e\xdc\x80\x69\x5b\xdf\x41\x65\x88\x82\x0e\x90\x48\xea\xfc\x91\xab\x0d\xa2\xd9\x51\x55\x0e\x1f\xa3\x82\xb1\x8d\x23\x81\xc6\x74\x03\x58\x03\x58\xdc\xc4\x2d\x58\x27\x0f\xe3\x36\xa0\xe5\xb0\xf1\xd8\x48\x3e\x4a\x4a\x03\x1b\xb3\xdf\x82\xc8\xce\xc2\xb3\xf3\x1e\xa2\xe0\x41\xd2\x72\x09\x86\x92\x6a\x64\x99\x9f\xc4\x55\x86\xd2\xde\x08\x2b\xcd\x2f\xf6\x9e\x28\x72\x09\xd5\xc3\x34\x72\xcb\xa1\x75\x74\xb4\xc7\x39\xf4\xfd\x22\x4b\xe8\x2c\xdd\x93\x57\x81\xea\x09\x71\xdb\x13\x87\xed\x0d\xd4\x9f\x2f\x82\xbf\x38\x51\xa4\xb5\x32\x9a\x66\xf5\x76\x66\xb9\x5c\x2e\xef\x44\x03\x9b\x2d\x26\x35\xb5\xf3\x38\xb9\xb6\x35\xba\x2b\xe0\xe6\xb2\x07\xdc\x60\xf6\x02\x38\x84\xb1\xaf\x26\x58\x2c\x60\xf1\xdd\x62\xf1\xda\xc7\x93\x04\x37\x38\xf0\xb2\x87\x77\x5f\xcd\x37\x8e\xe6\x1b\x23\x3b\xc8\xf0\xe5\xbc\xe7\xc8\x1e\xb2\x8c\x51\xb9\x83\xf7\x0b\xb8\x9f\xf5\x6e\x4b\x4e\x5d\xa0\x12\xc9\xb6\xc1\x91\xee\xbf\xef\xfb\x9c\xf1\x31\xa2\x68\xce\xe6\xb9\x7c\x8c\xc8\xdd\x7e\xff\x4d\x90\xd5\xa8\xdb\xde\x43\x16\x60\x2c\xcd\xff\x96\x40\x67\xb7\xd4\xde\x68\x65\x78\x34\x0f\xfc\x75\x31\xb0\xaf\xfb\x2f\xe0\xea\xd1\x11\xa5\x86\x52\x9a\xc4\x29\x5a\x0e\x46\xfa\xb2\xbf\x80\x67\x72\xa3\x1e\xbd\xe0\x15\xd0\xc2\xac\x1f\x59\x13\xd3\xfe\x56\x21\x59\x57\x5f\x55\xfe\x00\xb3\x3e\x48\x59\xed\x0c\x11\xfa\xd7\x75\xd9\x1f\x87\xf4\x13\xb2\xb8\x40\x57\xe9\x90\xc6\x98\x36\x63\x1c\x21\x97\xde\x51\x7c\x29\x03\x36\xfb\xfb\x57\xc8\x59\xbf\x31\x82\x91\x7d\x59\x7b\xb3\xbd\xe2\x71\x6f\x0e\x34\x5a\x7c\x32\xb6\x01\x41\xd5\xb3\x17\x04\xe0\xe0\x99\x4a\x3d\x30\x6e\x92\x6f\x5a\x23\xf2\x7c\x78\x30\xd3\xef\x74\xf9\x60\x56\x81\xc7\x62\x91\x5d\x69\xa2\xee\x02\xbb\x7f\xd0\x96\x0f\xd8\x49\x01\xb3\x3e\x85\xd3\x79\x7f\xf7\x5f\x00\x00\x00\xff\xff\xfc\xb6\x38\x0b\x7f\x05\x00\x00"), - }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf": &vfsgen۰CompressedFileInfo{ name: "controller.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -5981,12 +5970,12 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xcb\x6a\xc3\x30\x10\xbc\xfb\x2b\x16\x43\x20\x85\xa0\x5e\x7b\xf1\x97\x84\x20\x14\x69\xdb\x08\xdb\x5a\xa3\x5d\x85\x3e\xe8\xbf\x17\x4b\x09\x51\x6c\x43\x8d\x4f\x9a\x19\xcd\xec\xac\x46\x72\x69\x40\x68\x2d\x05\x89\x34\x0c\x18\x5b\xf8\x69\x00\x98\x52\xb4\x08\xcb\xaf\x83\x56\xa9\xd7\xf2\x57\x92\x06\xc0\x52\x0a\xb2\xe2\x43\x07\x03\x86\x0f\xb9\xec\xaf\x26\xaa\x87\x42\x07\x33\x22\xbf\xcc\xba\x21\xb1\xdc\x0e\x9e\x74\x59\x50\x81\xd9\xe3\xae\x67\x5d\xf9\xfd\xeb\xe1\x02\xeb\x6f\x0a\xcb\x71\x8a\x47\xff\xc6\xda\xd1\x68\x7c\x78\xd8\xa4\x20\xda\x07\x87\x9f\xcf\xf4\x0c\xa8\x0c\x54\xc9\xe7\xdb\x19\xe3\xd5\x5b\xd4\x7e\x82\x0e\x4a\xa7\xea\x4c\x24\x7d\x3a\xa3\xda\x26\xce\x25\xf3\x45\xf7\xf8\xc5\x9b\xb9\xee\x60\x03\x60\x26\x3f\xeb\x30\x2e\x79\xef\x14\x47\x23\xfb\x76\xc7\x6a\xc7\xed\x61\xd5\xd9\x61\x6b\xc2\xdc\xba\xd1\x16\xe3\x6a\x5f\x1b\xd9\x0b\x31\x8f\x6b\x35\x07\x3f\x4d\x28\xfc\xbc\x60\xa2\x3e\x4d\xa5\xfc\x8a\x73\x4b\xb3\x58\xc7\xb1\xea\xf0\x74\x80\xe3\x69\x4e\xc3\x28\x9a\xc5\x04\x67\xa2\xd3\x17\x62\x29\x8f\xa1\x03\x89\x09\x9b\xdf\xe6\x2f\x00\x00\xff\xff\xc0\x0c\x09\x70\xa5\x02\x00\x00"), }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf": &vfsgen۰CompressedFileInfo{ - name: "groups.tf", + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "controller_profiles.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1078, + uncompressedSize: 830, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x51\x6a\xf3\x30\x10\x84\xdf\x75\x8a\x41\x10\xc8\xcf\x1f\xe7\x00\x05\xd1\x83\x94\x12\x54\x45\x49\x4c\x65\x6d\x58\x49\xad\xa1\xe4\xee\xc5\x8a\xeb\xd8\xb1\x5d\x1c\xfa\x66\x24\xcd\x8c\xf7\x9b\x65\x1b\x28\xb1\xb1\x90\x95\x8e\xe6\xf4\x46\xf5\xee\xc8\x94\xce\x12\xb2\xf4\x21\x6a\xe7\x24\xbe\x04\x60\x28\xf9\x08\x05\x67\xfd\x31\x9e\xd6\x1f\x9a\xb7\x86\x7c\x64\x72\xce\xf2\xce\xeb\xca\x86\x7f\xf8\xdf\xbf\xfe\x24\x7e\xef\xae\x84\x00\x9a\x2f\x28\x1c\x88\x2b\x1d\xd7\x02\x40\x97\x51\xac\x82\xdc\xe4\x13\x43\xde\xe8\x38\xe9\xbf\xc1\xc8\xf6\x25\xff\xd6\xb6\xf4\x7b\x5b\xbf\x0a\x20\xe7\x9c\x99\x0e\xa5\x6b\xa2\xb2\x8b\x36\x27\xbb\xdf\xb5\x41\x50\x0a\x91\x93\xc5\x33\xba\x79\xdb\xf7\xed\xcb\xe2\xe0\x74\x34\x9a\x0b\x57\xfa\x54\x17\xad\x6e\x10\xb4\xcd\x93\x3c\x8d\x1d\x7e\xa4\xb3\x22\x01\x04\xeb\xac\x89\xc4\x50\x99\x2b\x50\x69\x03\x35\x33\x77\xa5\xcd\x70\xec\xe6\x60\x34\xf5\x45\x5c\x84\xf8\xa5\xc8\x9b\xe1\xf2\x2e\x67\xfa\x5a\x85\x5b\x55\x59\xe7\x52\x88\xad\xa8\x77\x7a\xe7\x36\xae\xa9\xdf\xd2\xb8\x88\x4e\x1e\x26\x10\xce\x33\x9c\x80\x77\x9f\x0c\x50\x00\x54\xb7\x78\x76\x2f\x17\x00\xbc\xc2\x9f\x85\x37\xdc\xf4\xbf\x80\xeb\x3b\x3d\x08\xed\x2a\x7d\x1c\x58\x6f\xb1\x96\xc3\xfa\x0e\x00\x00\xff\xff\xc6\x0e\xa7\x44\x36\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdd\x6e\x83\x30\x0c\x85\xef\xf3\x14\x16\x57\xdb\xc5\xd8\x13\xf4\x49\xa6\x29\xf2\x12\x17\xa2\x1a\xbb\x4a\x4c\xd7\x69\xda\xbb\x4f\x94\xa2\xf2\x57\xc4\x0d\xfa\xce\xa7\x13\x62\x77\x1a\x7b\x26\xa8\x82\x8a\x65\x65\xa6\xec\xcf\x59\x8f\x89\xa9\x82\x5f\x07\x50\xb4\xcf\x81\x60\xfb\x1c\xa0\xaa\xeb\xf7\xf1\xed\xd0\x42\xfb\xa5\xd7\xb7\x23\xa3\x05\xcc\x95\x03\x08\xda\x8b\xed\x78\x70\x00\x26\x69\xac\x7d\xb9\x60\xae\x67\xb5\x82\x1d\x95\x57\x07\x20\x1a\xe9\xf6\xb5\x35\xf7\x94\x8f\x5b\x53\x9d\x24\xd2\xf5\x73\xd2\x3b\x0c\x3b\xc5\x2b\xbd\xc3\xb0\xb1\xa3\x7e\x0b\x2b\xc6\xe1\x16\x4c\x83\xf2\xd2\xde\x60\x07\xa0\xc5\x87\x16\x45\x88\x77\x0b\x1f\x78\xcc\x5e\x28\x97\xa4\xf2\x2c\x7b\xc7\x0e\xa0\x35\x3b\x7b\x92\x78\xd6\xb4\xbc\xc9\x31\x3b\x5d\xba\x5f\xe4\x1c\xc0\x89\xb2\x10\x7b\xcc\x4d\xd9\xeb\x98\x61\x07\x90\xa4\x18\x32\xfb\x98\xca\x69\x27\x3c\xc7\xb3\xb4\xa9\x2f\x1d\x32\x53\xb1\xd1\x5c\xa6\xd7\xf8\xb6\x0e\x62\x98\x84\xb2\xe7\x24\xfd\xd5\x2b\x75\xeb\xa9\xac\xf0\xb0\x7c\xa5\xf5\x27\xfa\x29\x4f\x46\x39\xe1\xe1\x60\x8d\x24\x4b\x2a\x3e\x70\xf0\x41\xe5\x98\x9a\x29\x39\x6e\xf8\x6c\xee\x8b\x91\xd7\x0f\x61\x38\x25\x86\x96\xa2\xbf\xff\xc7\x76\x77\x16\xd8\xfd\xb9\xff\x00\x00\x00\xff\xff\xe1\x5a\x80\xd8\x3e\x03\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -5995,19 +5984,12 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xd0\x51\x6a\xc3\x30\x0c\xc6\xf1\x77\x9f\x42\x74\xcf\xc9\x0d\x76\x96\xa1\xca\xea\x6a\x22\x5b\xc6\x96\x03\x65\xf4\xee\x23\x94\x31\x37\x5b\x8a\xdf\xff\xdf\x4f\x89\xb5\x59\x6e\x06\xa7\xa5\x9d\x99\x34\x5d\xc2\xe7\x84\x3e\x86\x74\x82\x2f\x07\xb0\xa2\x34\x86\x77\x88\xea\x9b\xf0\x7c\x56\xb5\x2d\x9c\xf7\xb5\xbb\x3b\xf7\xf6\xa8\xeb\x7c\xc3\x28\x40\x9a\x8c\x93\xc1\x45\x0b\xa0\x08\x78\xce\xa2\x37\xf6\x40\x57\x2c\x56\x67\xf7\x73\x38\xab\x9f\xe8\xca\xb4\x64\x0d\xc9\xb8\x7c\x3c\x94\xd7\xf7\x0f\x46\xdb\x67\xf4\x3f\x34\x61\x0e\x95\xcb\x3a\xa8\xfe\x3b\xd9\x9b\x25\xb1\x71\x1d\xf6\x9e\xf2\xbd\x25\x6c\xc3\xd0\x6f\xdb\x2b\x84\x12\x48\x87\x90\xa7\xb4\x37\x44\x17\x8d\x6a\x61\xe5\x21\xe7\x4f\xde\x5b\x5b\x55\xad\x60\x9e\x2a\x53\x61\x1b\x7b\xa8\xa3\x95\xbb\xbb\xef\x00\x00\x00\xff\xff\x10\x0c\x7c\xdd\xa0\x02\x00\x00"), }, - "/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf": &vfsgen۰CompressedFileInfo{ - name: "profiles.tf", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3483, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xd4\xa4\xb0\xd1\x58\xda\x43\xd1\x43\x00\xa1\x28\x0a\x14\x28\x5a\xf4\xd2\x43\x0f\x8b\x85\x40\x53\x63\x8b\x0d\xc9\x11\xc8\x51\x62\x6f\xa0\xff\x5e\x50\x94\x64\x2b\x51\xbc\x46\x51\x6c\x0f\xbb\xba\x44\xd1\x7c\x3d\xbe\x99\x79\x74\x9e\xc3\x2f\x5a\xb0\x14\x0e\x7e\x26\xcb\x42\x59\x74\xf0\xbb\xb2\xed\x01\x94\xf5\x2c\xb4\x86\xc6\xd1\x4e\x69\x84\xd5\xce\x91\x01\x87\x1a\x85\xc7\x6c\x17\xa3\x36\x3a\xf8\x66\x16\x79\x9d\x38\xf4\xd4\x3a\x89\x90\x1a\xc1\xb2\xde\xd2\xa1\x1c\x62\x53\x48\x47\xff\x21\x6b\x0a\xcf\x09\x80\xa4\xd6\x32\x14\xa0\xd1\xee\xb9\x5e\x3d\x0a\x97\x49\xb2\xec\x48\x6b\x74\xa5\x15\x06\xfd\x1a\xbe\x3b\x37\x3f\x91\x7b\x98\x4c\x09\x40\x78\x81\x02\x76\xe4\x8c\xe0\x55\x02\x00\x90\xde\xfa\xcd\x8b\x6a\x9b\x5b\x9f\xde\xf5\xc6\xbe\x84\x6e\x3d\x0f\x49\xe2\x57\x49\x56\x0a\x5e\xac\x7f\x07\xaf\xca\xbe\xef\x61\x67\xca\x56\x78\xf8\x90\x00\xac\x93\x04\xe0\x01\x9d\x45\x0d\x05\xa4\x37\xcf\x21\xa2\xa2\x27\xab\x49\x54\x81\x02\x26\x49\xba\xbb\xcf\xf3\x68\x22\x5f\xca\x5a\x58\x8b\xba\xcb\xde\xa4\x33\x17\xa6\xfa\xe1\xfb\x4d\xeb\xdd\x29\xea\x11\x9d\x57\x64\xbb\x7c\xf0\x0e\xb9\xab\x56\xb2\x22\x5b\x36\x07\xcc\x1e\x4d\x08\xff\x98\x06\x3c\xca\x2a\x76\x15\x14\xf0\x3e\x92\xf2\xbf\xa1\x2a\x95\x11\x7b\xcc\x64\xa3\x28\xdb\x7f\xec\xdb\xf0\x21\x00\x14\x6e\xef\x43\xe7\xb4\x60\x46\xbb\x1a\x60\x46\xd8\xc5\xd5\xa9\x42\xc8\xde\xaa\xe0\x11\x5a\xb7\x53\xfb\xac\x75\xba\x88\xe0\xa6\x31\xac\x99\x9b\x12\x6d\xd5\x90\xb2\xdc\xe5\x63\xc4\x8f\x6d\xab\xaa\xe2\xe6\xe6\x39\xfc\xed\xbe\x35\x42\x86\x7f\x8c\x90\xf7\x35\x1e\xea\x63\xd3\x8d\x25\x06\x38\xd9\x4e\x39\xcf\xe5\x96\x88\x8b\x23\x8e\x23\x95\x4a\xb2\x9e\x34\x16\xcc\xc7\x77\x0b\xdf\xfe\x7c\x77\x36\x7b\x71\x4c\xca\x70\xf8\x9e\x89\x7e\x76\xe4\xb8\x79\x65\x4f\x74\x19\x0f\x02\x05\x30\x9a\x46\x0b\xc6\xb0\x43\xab\xf4\xe6\xb9\x11\x5c\x67\x86\xaa\x56\x63\x97\x4b\x9d\x0f\xe3\x9d\x1d\x85\xd1\x19\x9b\x46\xa7\x77\xfd\x5e\x01\x9c\xba\x09\xf3\xa7\x80\x79\xb3\x47\xef\xa1\x8b\x6f\x79\x0f\xe6\xde\x7b\xa4\x6f\x62\xf4\xe4\x3d\xec\x61\x7a\xeb\x27\x92\xd3\xb8\x41\xcb\xbd\x58\xc7\x84\xf1\x18\x65\xa5\xfc\xc3\x42\xf9\x73\xf3\xb8\xae\x33\xbe\x08\xcd\xb9\xff\x82\xb9\x0f\xf3\xbe\x2e\x1f\xf0\xe8\xe1\xe5\x53\xc0\xdf\x9e\x2c\x5a\x49\x15\xf6\x22\x30\x7a\xce\xe1\x31\x95\xde\x08\xad\xd1\x73\x84\x3a\x87\xf7\xd2\xdc\xc7\x7e\x03\x64\xf5\x11\xa4\x90\x35\x56\x9b\x09\x59\xdc\xa8\x49\x5a\x45\x55\x79\xd8\x6c\x61\x2b\x3c\xb6\x2e\xf6\x64\x78\x2f\x77\x5a\x84\x51\x48\xd3\x04\xa0\x5b\x27\x5d\x92\x5c\xd0\xec\x5f\x17\x35\x7b\xe4\x1e\x72\xe1\x3d\xb2\x8f\x70\xd6\x21\xd1\x1f\xc4\x78\x0f\x3f\x55\x46\x59\x30\xad\x67\xa8\xc5\x23\xc2\x28\x13\x58\x9d\x8f\x86\xb2\x4c\xa7\x5c\x31\xd5\xb8\xf4\xd9\x65\xf5\x1f\xce\x3f\xd3\x93\xcf\x74\x15\x5c\x2a\xfd\x59\xef\x85\x7c\xce\xd8\x7f\x23\xeb\xff\x36\xe9\x57\x55\xfe\xaa\xca\x5f\xb2\x2a\x8f\x02\xd9\x7a\x3c\x57\x5e\x60\x9a\x7e\xf7\xce\xa5\xb3\x97\x91\x45\x61\xde\x6c\xe1\xf2\x60\xcf\x57\x74\xa6\xe3\xbf\xb5\xdb\x30\x7a\x8c\xbe\x97\xf2\x28\x30\x23\x38\xff\x09\x4d\x9d\x02\xfc\xf5\x12\x7a\x41\x27\x27\xd7\x4f\xa9\xe2\x52\xe2\xd7\xda\x07\xe0\xc4\x53\x39\xce\x1b\x14\x10\x37\xe4\x2c\x72\x16\x93\x49\x2d\x87\x15\x7b\xcd\xcd\x5f\xbd\xcc\x5e\xc9\x4b\xd4\xe4\xb7\x39\xb9\xf2\xde\x88\x6e\xd7\x70\x71\x9e\xf0\x7a\x1e\x62\xd4\x05\x0e\xfe\x09\x00\x00\xff\xff\x88\x61\xca\x4e\x9b\x0d\x00\x00"), - }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3325, + uncompressedSize: 3270, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4f\x8f\xdb\xb6\x13\xbd\xfb\x53\x0c\xb4\xbf\x43\xf2\xc3\x4a\xf2\x06\x48\x0b\xa4\xf0\xa1\x87\x00\x05\xfa\x27\x40\x93\x22\x87\x60\x61\xd0\xd4\xd8\x62\x4d\x71\x84\x99\x91\xbd\x46\x93\xef\x5e\x90\xb2\xfc\xaf\xf6\xae\xd1\xfa\xb2\x0b\x4b\x33\xef\xf1\x51\x6f\xc8\x77\x07\x1f\xd1\x76\x8c\x60\xa9\xdd\x00\xaa\xad\xe0\xd3\x2f\x1f\xc1\x88\xa0\x0a\x98\x50\xc1\xb2\x9b\xa1\xa5\x30\x77\x0b\x50\x02\x4b\x41\x99\xbc\x47\x96\x02\x7e\xb4\xea\x56\x46\x51\x52\x91\x47\x2d\x04\x79\xe5\x2c\x8e\x18\x85\x3a\xb6\x08\x59\xe8\xbc\x9f\x0e\x3f\x33\xc8\x22\x4f\xbe\x47\xc9\x05\x2d\xa3\x4a\x06\x7f\x8d\x00\x2c\x75\x41\x61\x02\x1e\xc3\x42\xeb\x57\x2b\xc3\xc5\xbe\x74\x1a\x4c\x83\xf2\x7a\x34\x02\xb8\x83\xcf\x4e\x6b\xea\x14\x2a\x6c\x31\x54\x32\xa5\x70\x0f\x8c\x0d\x29\xe6\xf8\x84\x36\x22\xf9\x0a\x44\x0d\x6b\x52\xb1\x36\x4e\x61\x4e\x0c\x8d\xb1\xb5\x0b\x28\x30\xc3\x39\x31\x26\xb0\xc6\xa8\xad\x67\xf4\x04\x0b\xa6\xae\x15\x30\x8c\xb0\x66\xa7\x8a\xe1\x1e\xac\xe9\xc4\x85\x05\x18\xa8\xd0\x54\x9e\xec\xb2\x18\xc1\x01\x2f\x4c\xe0\xcb\x08\x00\x76\x28\xd3\x84\x52\xb8\x20\x6a\xbc\xbf\x3f\xf7\x6e\x2f\xea\xec\xeb\x35\xf1\xb2\x7f\xf5\x38\x4a\xbb\x12\x02\x5a\x75\x14\xd2\x26\x01\xe8\xa6\xc5\xf8\x7f\x02\x99\x48\x9d\xa5\x67\x35\x89\xf6\xcf\x4e\x76\xad\xa2\xc6\xb8\x20\x5f\xd2\xde\x16\x2e\x54\xf8\xf4\x98\x3a\x3a\x41\xde\xa2\x58\x62\xec\x61\xd4\x35\x18\xf7\x75\x02\xd9\x77\xe3\x26\x3e\xfb\x16\x97\xd0\x32\xad\x9c\x38\x0a\xc8\x90\xcd\x9d\xc7\x6c\xbb\x94\x48\x84\x21\x31\xc3\x04\x1a\xaa\x3a\x8f\x07\xec\x47\xac\xc5\x8c\x48\x45\xd9\xb4\xd3\xbd\xa9\x12\x4a\x85\xa2\x2e\x98\x24\x71\x02\xd9\xff\x7e\xfa\xf0\xeb\xfb\x72\x5f\xf3\x2f\x97\x11\xe9\x22\x48\x11\x6d\x3d\xb5\x66\x6a\x91\xf5\x32\x5f\xac\xca\xad\x77\x18\x34\xb7\xa6\xb0\xac\xb7\xe1\x4d\x88\xd7\x73\xdf\x9a\x78\x89\x9b\xeb\x78\x97\xb8\xb9\x09\x6f\x3c\x03\x90\xaf\x11\xdc\x57\xde\x4c\xf0\x96\xf8\x65\xc1\x5b\xde\x5b\x09\x6e\xf1\x3a\xb9\xb1\xee\x66\x62\x13\xe9\xcb\x52\x13\xe7\x45\xa1\x07\x27\xe6\x40\xed\x82\x77\x01\x77\x87\x1a\x40\x26\x5d\x45\xd0\x2c\x2b\xc7\x90\xb7\x10\x61\x4b\x11\x9f\xe0\xd3\x9f\xec\xfe\xb8\x72\x05\x07\xae\xfa\xff\x49\xc3\x49\xb1\x3d\x07\x78\x3c\x84\x67\x0a\xca\xfe\x03\x0e\x53\x7a\x9e\x7f\x6f\xae\xcb\x08\x2f\xb7\x2f\x71\xf3\x4c\x7b\xdc\xd8\x9b\x08\x8a\x9f\xe9\x79\x39\x83\x79\x2e\x75\xbf\xd4\x7a\x41\xc8\xce\x1f\x27\x32\x6a\x5a\x07\xc8\x7f\x4f\x00\xef\x52\x2c\x38\x6a\xfe\x47\x79\x43\x55\x2c\x7f\x3b\x1e\x3f\x5b\xd8\xac\xe0\xf4\x70\xef\xeb\xe3\x6f\x0e\xa8\x28\x87\xe7\x7e\xdf\xfc\x98\xbc\xfb\x6d\x34\x3a\x0e\x2b\xc3\x3c\x0c\x61\x45\x09\x3e\xfc\xf6\xfe\x20\xa1\xa4\x8b\xbf\x8f\x00\xbb\x5a\x25\x68\x91\xe7\xc4\xcd\xe8\x0e\x28\x60\x1e\x2f\x3c\x10\xf4\xf3\x3c\xde\xa0\x58\x81\xf5\x9d\x28\x32\xec\x2e\xab\xd6\x85\x45\xf1\x4c\xa2\x19\xb0\xf3\x44\xd5\xcf\xd1\xf9\x80\xa2\xb5\x93\xa3\x94\xd2\x98\xcd\xb0\xc0\x94\x46\x40\x6b\x3c\x0c\x5c\x51\x67\x91\xe0\x3e\x21\xb3\x89\xcb\x06\x0a\x7e\x03\x15\xa1\xc4\xe5\x83\x1a\x59\x82\x51\x30\xe9\xe6\xbe\x07\x21\x70\x0a\xeb\x94\x7e\x94\x37\x51\xef\x4e\x48\x02\x5a\xd7\xce\x23\x04\x82\x9f\xfb\xc8\xd6\xa7\x1d\xee\x42\x48\x32\xcf\x26\x9b\x23\xc5\xc5\x85\x04\x77\xe3\xb8\x32\xbe\x2e\xa4\x3c\xbc\xbd\x22\xa4\x6c\xbf\x1c\xec\x09\x93\x65\xa6\x95\xe3\xcb\xc7\x67\xef\xaa\xff\x7c\x6e\x0e\x86\xdf\x9a\xb4\xa4\x56\xcb\xc1\x31\xbb\xe1\xb8\x83\x3f\x04\x41\xb4\x9a\x75\xf3\xf8\xc9\x2a\x27\x66\xe6\x7b\x3b\xcc\xba\xf9\x1c\x79\xfb\xdd\x5a\x76\x41\x63\x1a\xf5\xb4\x48\x8e\x6f\xcc\x12\x41\xe2\x4c\xe0\x0a\x79\xa3\x75\x7c\xe9\x04\x94\x4d\x90\x26\x46\xd8\x0a\x66\xc6\x2e\x41\x69\xc7\xb5\xf7\xd2\xd6\x75\x6b\x04\x46\xed\x38\x00\x32\x13\x17\xf0\x19\x41\xea\xe4\xa1\x38\x5e\x69\x25\x94\x8c\xbb\xc2\x68\x2f\x0a\x16\x77\x68\xb5\x6a\x2b\xef\xca\x72\xe1\xb4\xee\x66\x85\xa5\xa6\xac\x8d\xd4\xce\x12\xb7\xa5\x0e\x54\xa5\x13\xe9\x50\xca\x37\xdf\x3f\xbc\x79\x80\x34\x06\x42\x7e\x85\x55\x71\xb4\x5d\xb2\x11\xc5\xc6\xaa\x3f\x9d\xdb\xaf\x5f\xe1\xd5\x76\x7f\x72\x37\x86\x9c\xc6\x90\xe3\x18\x52\xd3\x9f\xd4\x71\x30\x3e\x76\xe5\xdd\xbe\x25\xcf\x03\xe5\xad\x59\x20\xff\x00\xf8\xe4\x14\x1e\x5e\x9f\x1c\x28\x7f\x07\x00\x00\xff\xff\x22\x61\x8b\x46\xfd\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4d\x8f\xdb\x36\x10\xbd\xfb\x57\x3c\x68\x7b\x48\x8a\x95\xec\x0d\x90\x16\x48\xb1\x87\x1e\x02\x14\xe8\x47\x80\x26\x45\x0e\x41\x60\xd0\xd4\xd8\x62\x2d\x71\x04\xce\xc8\x5e\xa3\xc9\x7f\x2f\x48\x59\xfe\xca\x7a\xd7\x68\x7d\x49\x60\xed\xcc\x7b\x7c\xe4\x1b\xf2\xdd\xe0\x3d\xd9\x2e\x10\x2c\xb7\x1b\x90\xda\x12\x1f\x7e\x7b\x0f\x23\x42\x2a\x30\xbe\xc4\xb2\x9b\x91\x65\x3f\x77\x0b\x28\xc3\xb2\xd7\xc0\x75\x4d\x41\x0a\xfc\x6c\xd5\xad\x8c\x92\xa4\xa2\x9a\xb4\x10\x0a\x2b\x67\x69\x14\x48\xb8\x0b\x96\x90\xf9\xae\xae\xa7\xc3\xcf\x0c\x59\xe4\xc9\xf7\x28\xb9\x90\x0d\xa4\x92\xe1\x9f\x11\x60\xb9\xf3\x8a\x7b\xd4\xe4\x17\x5a\xbd\x58\x99\x50\xec\x4b\xa7\xde\x34\x24\x2f\x47\x23\xe0\x06\x1f\x9d\x56\xdc\x29\x4a\x6a\xc9\x97\x32\x65\x7f\x8b\x40\x0d\x2b\xe5\xf4\x40\x36\x22\xd5\x25\x44\x4d\xd0\xa4\x62\x6d\x9c\x62\xce\x01\x8d\xb1\x95\xf3\x24\x98\xd1\x9c\x03\x25\xb0\xc6\xa8\xad\x66\xfc\x80\x45\xe0\xae\x15\x98\x40\x58\x07\xa7\x4a\xfe\x16\xd6\x74\xe2\xfc\x02\x06\x25\x99\xb2\x66\xbb\x2c\x46\x38\xe0\xc5\x3d\x3e\x8d\x00\xa0\xe1\xb2\xab\xe9\x70\xc1\x6d\xe0\xb9\xab\xe9\x76\x04\x7c\x1e\x25\x79\xde\x93\x55\xc7\x3e\xa9\x05\x74\xd3\x52\xfc\xff\x1e\x99\x48\x95\xa5\x6f\x15\x8b\xf6\xdf\x4e\xe4\x97\xdc\x18\xe7\xe5\x53\xda\xa4\xc2\xf9\x92\x1e\x3e\xa7\x8e\x4e\x28\x6c\x51\x2c\x07\xea\x61\xd4\x35\x14\x37\xe8\x1e\xd9\x0f\x93\x26\x7e\xfb\x1a\x97\xd0\x06\x5e\x39\x71\xec\x29\x20\x8b\x8b\xcb\xb6\x4b\x89\x44\xe4\x13\x33\xee\xbf\xd5\x72\xc4\x5a\xcc\x98\x55\x34\x98\x76\xba\x77\x47\x42\x29\x49\xd4\x79\x93\x24\xde\x23\xfb\xee\x97\x77\xbf\xbf\x1d\xef\x6b\xfe\xe3\x32\x22\x5d\x04\x29\xa2\x3f\xa7\xd6\x4c\x2d\x05\x3d\xcf\x17\xab\x72\x5b\x3b\xf2\x9a\x5b\x53\xd8\xa0\xd7\xe1\x4d\x88\x97\x73\x5f\x9b\x78\x49\x9b\xcb\x78\x97\xb4\xb9\x0a\x6f\x1c\x66\x0a\x97\x08\xee\x2b\xaf\x26\x78\x4b\xfc\xbc\xe0\x2d\xef\xb5\x04\xb7\x74\x99\xdc\x58\x77\x35\xb1\x89\xf4\x79\xa9\x89\xf3\xac\xd0\x83\xab\x6f\xa0\x76\xbe\x76\x9e\x76\xb7\x13\x90\x49\x57\x32\x9a\x65\xe9\x02\xf2\x16\x11\x76\x2c\x52\x27\xf8\xf4\x4f\x76\x7b\x5c\xb9\xc2\x81\xab\xbe\x3f\x69\x38\x29\xb6\x8f\x01\x1e\x0f\xe1\x23\x05\xe3\xfe\x00\x87\x29\x7d\x9c\x7f\x6f\xae\xf3\x08\xcf\xb7\x2f\x69\xf3\x44\x7b\xdc\xd8\xab\x08\x8a\xc7\xf4\xb4\x9c\xc1\x3c\xe7\xba\x9f\x6b\x3d\x23\x64\xe7\x8f\x13\x19\x15\xaf\x3d\xf2\x3f\x13\xc0\x9b\xf4\xbe\x1f\x35\x7f\x53\xde\x70\x19\xcb\x5f\x4f\x26\x4f\x16\x36\x2b\x9c\x5e\xee\x7d\x7d\xfc\x1d\x3c\x29\xc9\xe1\xbd\xdf\x37\x7f\x4e\xde\xfd\x3a\x1a\x1d\xa7\x8e\x61\x1e\x86\xd4\xa1\x8c\x77\x7f\xbc\x3d\x88\x1a\xe9\x05\xef\xdf\xf2\x5d\xad\x32\x5a\x0a\x73\x0e\xcd\xe8\x06\xec\x29\x8f\x0f\x1e\x84\xea\x79\x1e\x5f\x50\x2a\x61\xeb\x4e\x94\x02\x76\x8f\x55\xeb\xfc\xa2\x78\x22\x9a\x0c\xd8\x79\xa2\xea\xe7\xe8\xf1\xa4\xa1\x95\x93\xa3\xb8\xd1\x98\xcd\xb0\xc0\x14\x2b\xa0\x15\x1d\x26\xa7\xa8\xb3\x48\x70\x1f\x28\x04\x13\x97\x0d\xf6\xf5\x06\x25\x93\xc4\xe5\x43\x8d\x2c\x61\x14\x26\xbd\xdc\xb7\x10\x86\x53\xac\x53\x8c\xd1\xb0\x89\x7a\x77\x42\x12\xd0\xba\x72\x35\xc1\x33\x7e\xed\xb3\x57\x1f\x5b\x42\xe7\x7d\x92\xf9\x68\x44\x39\x52\x5c\x9c\x89\x62\x57\x8e\x2b\x93\xcb\x42\xca\xdd\xeb\x0b\x42\xca\xf6\xe4\xb0\x27\x4c\x96\x99\x96\x2e\x9c\xbf\x3e\x7b\x57\xfd\xef\x7b\x73\x30\xfc\xd6\xa4\x63\x6e\x75\x3c\x38\x66\x37\x1c\x37\xf8\x4b\x08\xa2\xe5\xac\x9b\xc7\x23\x2b\x9d\x98\x59\xdd\xdb\x61\xd6\xcd\xe7\x14\xb6\xe7\xd6\x06\xe7\x35\xc6\xca\x9a\x17\xc9\xf1\x8d\x59\x12\x24\xce\x04\xad\x28\x6c\xb4\x8a\x7f\x74\x02\x0d\xc6\x4b\x13\xb3\x68\x89\x99\xb1\x4b\x28\xef\xb8\xf6\x5e\xda\xba\x6e\x4d\x08\xa4\x5d\xf0\xa0\x10\x38\x14\xf8\x48\x90\x2a\x79\x28\x8e\x57\x5a\x09\x27\xe3\xae\x28\xda\x8b\xbd\xa5\x1d\x5a\xa5\xda\xca\x9b\xf1\x78\xe1\xb4\xea\x66\x85\xe5\x66\x5c\x19\xa9\x9c\xe5\xd0\x8e\x75\xa0\x1a\x3b\x91\x8e\x64\xfc\xea\xc7\xbb\x57\x77\x48\x63\x20\x5c\xaf\xa8\x2c\x8e\xb6\x4b\x36\xa2\xd4\x58\xad\x4f\xe7\xf6\xcb\x17\xbc\xd8\xee\x4f\xee\x26\xc8\x79\x82\x9c\x26\x48\x4d\x7f\x73\x17\xbc\xa9\x63\x57\xde\xed\x5b\xf2\xdc\x73\xde\x9a\x05\x85\x9f\x40\x0f\x4e\x71\xf7\xf2\xe4\x42\xf9\x37\x00\x00\xff\xff\x8d\xdc\x52\x19\xc6\x0c\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", @@ -6030,6 +6012,13 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xdd\x6a\xc3\x30\x0c\x85\xef\xfd\x14\x22\x50\xc8\xa0\x78\xb7\xbb\xc9\x93\x94\x22\x9c\x44\x59\x4c\x1c\x3b\x58\x76\xd7\x31\xf6\xee\xc3\xf1\x42\xf3\x67\x7c\xa5\x73\x0e\xfa\x24\x8d\xae\x8d\x86\xa0\xf8\x72\x7e\x20\x5f\xc0\x8f\x00\x60\x17\x7d\x43\xb0\x7f\x15\x14\x52\xbe\xe7\xff\x6f\x17\x00\x8d\x8b\x36\x1c\xbc\x50\x81\x21\xfb\x19\xfa\xf2\xa1\xbc\xcc\x6e\xb4\x6a\x24\x7e\x5b\x32\xa8\x6d\x4b\xcf\x6d\x66\x16\xe4\x2c\x24\x9b\x89\x1c\xc8\x63\x6b\x19\x99\xfc\x43\x37\x84\x7a\x82\x0a\x32\xb4\xac\x9d\x0b\x43\xac\x49\x9e\x1b\xd3\x24\xdc\xe3\x40\xdf\x7c\x80\x4b\x54\x8b\xb8\xee\xe4\x46\xa5\x2d\x72\xec\x3a\xfd\x5c\x7c\xa7\x62\x0a\x29\x6c\xc8\x1f\x66\x3f\xc1\xcb\x46\x01\xa0\x26\x9d\xf8\xc8\xef\x23\x9d\xf3\xa3\x0a\x65\x71\x61\x79\xe1\xe2\xba\xe9\x9b\xd6\x96\x2b\xc3\x07\x2f\x14\xa9\x98\x56\x99\x1a\x18\x0a\x68\x54\x4d\x86\x77\x13\xe6\xe2\x6a\xbe\x94\x3a\xec\x61\x2d\xce\xde\x06\xd9\xea\x69\xa2\xc0\xdb\x83\x3a\x37\xc4\xa9\xcc\x91\x97\x27\xa3\xad\x4f\x7c\x5b\x9d\xf1\x7e\x85\xdb\x3d\x81\x32\x05\xe4\xa0\x6c\xab\x7c\x8b\xbd\xe3\x90\x59\x2a\x08\x3e\x92\xf8\x15\xe2\x2f\x00\x00\xff\xff\xfc\x17\xcc\xf5\x8a\x02\x00\x00"), }, + "/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "worker_profiles.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 810, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4b\x6e\xeb\x30\x0c\x45\xe7\x5a\x05\xe1\xd1\x7b\x83\xba\x2b\xc8\x4a\x8a\x42\x60\x25\xc6\x16\x4c\x91\x81\x24\x27\x29\x8a\xee\xbd\xf0\x0f\xb1\x63\x27\xc8\xc4\x38\xe7\xe2\x4a\x22\xa3\xfa\x9e\x09\xaa\x9b\xa6\x8e\x92\xbd\x24\x3d\x07\xa6\x0a\x7e\x0c\x40\xd6\x3e\x39\x82\xfd\xef\x04\x55\x5d\xbf\x4f\xff\x88\xc5\xb5\x5f\x7a\x7f\x3b\x33\x16\x87\xa9\x32\x00\x4e\x7b\x29\x07\x39\x38\x01\x93\x34\xa5\xfd\x77\xc5\x54\xcf\x95\x82\x91\xf2\x7f\x03\x20\xea\x69\xfc\xda\xa7\x9e\xf5\x8f\xb1\xa1\x0e\xe2\xe9\xfe\xb9\x44\x23\xba\x83\xc2\x55\x34\xa2\xdb\x25\xbd\xde\x84\x15\xfd\x70\xf3\xa2\x4e\x79\x9b\xdc\x61\x03\xa0\xd9\xba\x16\x45\x88\x0f\xcb\x1e\x78\x72\xaf\x94\x72\x50\x79\xe5\xce\xd8\x00\xb4\xa5\x5c\x2c\x89\xbf\x68\xd8\xbe\xde\xe4\x2e\x0f\x6d\x37\x9e\x01\xe8\x28\x09\xb1\xc5\xd4\xe4\xa3\x8e\x15\x36\x00\x41\x72\x41\x66\xeb\x43\xee\x0e\xe4\x35\x5e\xd9\x45\x6d\x8e\xc8\x4c\xb9\x4c\xc9\xad\xfd\x8c\xc7\x15\x90\x82\x41\x28\x59\x0e\xd2\xdf\xad\x52\x5c\xf7\x1c\xe0\x61\xe1\x72\x6b\x3b\xfa\xce\x2f\xc6\xb8\xe0\xe1\x60\x8d\x84\x12\x54\xac\x63\x67\x9d\xca\x39\x34\x8b\x39\x6d\xf4\x3c\xf3\xcd\xb8\xeb\x87\x3c\x9c\x10\x5d\x4b\xde\xce\x77\xd8\x95\x6d\xb1\xf9\x35\x7f\x01\x00\x00\xff\xff\x27\x3e\x6b\x83\x2a\x03\x00\x00"), + }, "/terraform-modules/bootkube": &vfsgen۰DirInfo{ name: "bootkube", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -6621,6 +6610,49 @@ var vfsgenAssets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xcb\x8e\xe3\x2a\x10\xdd\xfb\x2b\x4a\xa8\x17\xdd\x52\xc7\xe9\xbe\xfb\x7c\xc9\xd5\x08\xd1\x50\x4e\x98\x60\xf0\x40\x91\x87\x22\xff\xfb\x08\x83\x1f\x71\x67\x66\x16\xc9\x2a\xaa\xc7\xe1\xd4\xa9\x53\xf6\x18\x5c\xf4\x12\x81\x19\xfd\x75\xd2\x9e\xf8\xc9\x99\xd8\x22\x03\x76\x76\xfe\x88\x7e\xa3\x74\x38\x32\xb8\x55\x00\x56\xb4\x08\xf3\x6f\x07\xec\xe5\x76\x12\xbe\x96\x26\x06\x42\xcf\x53\xbe\xdf\xe4\x58\xe7\x9c\x29\x81\x82\xf3\x72\x93\x2e\x5a\xaa\xb5\x55\x78\xe9\xeb\x5f\xd2\x9d\xff\x63\x15\xc0\x10\x5d\xa2\xa6\xf6\xdc\xc3\x87\x5c\x05\xf0\x25\x02\x16\x62\x5c\xab\x52\x53\x08\xa7\x9c\x56\x15\x40\x7a\x12\xd6\x40\xa5\x28\xe5\x2a\x80\xc6\xf9\x56\xd0\x72\x82\x42\xa3\xaf\xaa\xef\x4a\xe8\xbd\xd5\xa4\x9d\x65\xc0\xe6\xbf\x4b\x21\x9e\x52\x60\x33\x61\x2e\xb8\x3f\x22\x3d\x0a\xf4\x50\x19\xe9\x2c\xa1\x25\xd8\x81\x12\x24\x6a\x49\x5c\x3a\xdb\xe8\x7d\xa9\x9b\x1e\xf9\x7f\xf1\xf4\x8f\xda\xa3\x55\xe8\x51\x3d\x9e\x5b\xb9\x56\x68\x3b\x3b\xa0\x15\xf2\xa0\x2d\xe6\xd9\x0b\x9b\x87\x64\x8a\x2e\x4f\xc9\x92\xd4\x38\xc9\x2e\x4e\x03\x27\x4a\x51\x18\x2e\xbb\x18\x2a\x80\x16\x5b\xe7\xaf\xab\x5c\x0e\x56\x69\xc3\x67\x2e\x9b\x3d\x9f\xac\xba\x03\xe6\x3a\xda\x3a\xbf\xaf\x1b\x23\x48\x0a\xbf\x31\xda\xc6\xcb\x36\xcb\x94\x0d\xe8\xd1\x85\x69\xdb\xb0\x83\xb5\x01\xea\xc7\x2a\x6a\x95\x5e\x4c\xf7\x31\x28\x03\xb0\x74\xe8\xfd\x39\xd5\x8b\x63\xfa\x06\x02\xd0\x27\xa0\xbd\x17\xdd\x41\xcb\x50\xc0\x8c\x0e\x84\x96\xd3\xb5\xc3\x34\x85\x50\xca\x63\x08\x6c\xac\xb6\x48\x09\x93\x6b\x4b\xe8\x1b\x21\xb1\xb4\x8d\xf1\x69\x17\xeb\x45\x0c\x55\x07\x17\x68\x71\xce\x4f\x6f\x0c\xe0\x2c\x34\xf1\xc6\x79\x6e\x50\x84\xc4\x98\x7c\xc4\x81\x6c\x5f\x55\xc9\x9b\xc0\x26\x73\xce\xd6\xba\xbf\xab\xe9\x53\xf0\x57\xab\x8f\x5e\x27\x6c\x3b\x23\x08\x79\xa3\xcd\x24\x70\x7e\xe0\x0f\x6e\x07\x08\x56\x77\x1d\x52\x98\x74\x91\x7c\x0c\xcd\x3c\xef\x80\x67\xae\x23\xf7\x7f\x33\x1d\x01\x60\x07\x09\xe2\x95\xbd\xdc\x3a\x41\x87\xba\x75\x2a\x1a\xec\xb7\xd2\x6c\x73\x47\x7d\x15\xad\xa9\xa9\xed\x0c\x7b\x4b\x4b\x3d\x09\x9f\xa8\xe5\x4d\xe6\x33\xe4\xab\xaf\xee\x93\x9f\xdd\x5c\x56\x2e\xba\x5c\x7a\xd9\xe0\x31\x7e\x61\x9e\x11\xee\xdf\x4b\xad\x96\x5e\x3f\x3f\xde\x87\x61\xe7\xba\xb7\xa1\x2f\x84\x03\x3f\xe2\x35\x00\xac\xfa\x7e\x06\x67\xd1\x4a\xa7\xf0\x35\xf5\x8d\x75\xb9\x6b\x64\xaf\x6c\xe0\x01\xfd\x49\x4b\xe4\xba\x83\x1d\x48\xad\x7c\xb2\x67\xee\x29\x99\x14\x7c\x87\xcf\x8f\x55\x6f\x56\x28\xc4\xa6\xd1\x97\xb5\xd7\xef\x92\xc5\x88\xbf\x03\x00\x00\xff\xff\x6d\xf6\xb4\x45\xee\x06\x00\x00"), }, + "/terraform-modules/matchbox-flatcar": &vfsgen۰DirInfo{ + name: "matchbox-flatcar", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/terraform-modules/matchbox-flatcar/groups.tf": &vfsgen۰CompressedFileInfo{ + name: "groups.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 464, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x61\x6a\xc3\x30\x0c\x85\xff\xeb\x14\x0f\xc3\x60\x83\xa5\x07\x18\x98\x1d\x25\x68\x8e\xb2\x06\xec\xa8\xc8\xce\x28\x8c\xde\x7d\xd8\x73\x43\xa1\xac\xec\xaf\xfd\x3d\xf4\xe9\xc9\x24\xeb\x66\x41\xe0\x12\x97\x70\xfc\xd0\xf3\xf8\x69\xba\x9d\x1c\xdc\xb2\xe6\xc2\x31\x3a\x7c\x13\xb0\x72\x12\x78\xcc\x6a\x89\xcb\x33\x01\xd8\x81\xe1\x29\xbb\xd7\xf6\xf2\xc5\x76\x58\x75\x92\xb1\xd2\x04\xbc\x10\x01\x27\xd3\x79\x89\x35\x5c\xbf\x03\x87\xa3\x4c\x63\x8f\xc2\x7b\x14\xdb\x04\xef\xd8\xc7\x77\xbe\x93\xc3\x1c\xb9\x04\xb6\x21\x2e\xeb\x76\x1e\x7a\xee\xd0\x74\xde\xee\x43\x57\xfa\x96\x23\x20\x4b\x94\x50\xd4\xe0\xdb\x32\x40\xe2\xd0\x85\x9a\x6f\xe2\x40\xc0\x85\x2e\x44\x0f\x0a\xa9\xe8\xdf\x6d\x3c\x68\xe1\xb6\x84\x3b\xe5\x8a\xfe\x7a\xfe\x5b\x14\xd0\x0c\xf8\xfd\x02\x32\xb9\xab\xfe\x4f\x00\x00\x00\xff\xff\x25\x47\xf6\xe4\xd0\x01\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/profiles.tf": &vfsgen۰CompressedFileInfo{ + name: "profiles.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 2694, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x4d\x8b\xe3\x38\x10\xbd\xfb\x57\x14\xde\xf4\x92\x40\xc7\xee\xc3\xb2\x87\x06\xb3\x2c\x0b\x0b\x0b\xcb\x5c\xe6\x38\x0c\x46\x91\x2a\xb1\xa6\x25\x95\x91\xe4\x74\xd2\xc1\xff\x7d\x90\x65\x25\x71\x77\x3a\xd3\x0c\x03\x73\x98\xf6\x25\x1f\xf5\xea\xf9\xa9\xea\xe9\x59\x74\xd4\x59\x8e\x90\x6b\xe6\x79\xb3\xa2\x5d\xdd\x5a\x5a\x4b\x85\x39\xe4\x6b\xc5\x3c\x67\x76\x29\x8d\xf3\x4c\xa9\x1c\x0e\x19\x80\x61\x1a\xa1\x82\x35\x59\xcd\xfc\x3c\x03\x80\x17\xc0\xe5\x8d\xcb\x6f\x87\xca\x96\xd9\xc2\x90\xc0\x3a\x74\x65\x00\x8b\x2c\x03\x78\x40\x6b\x50\x41\x05\xf9\xec\x10\x00\x82\x1e\x8d\x22\x26\xc2\x9b\x3d\x71\x52\xfd\x7d\x59\xc6\x12\xb9\x9a\x37\xcc\x18\x54\x7d\x61\x51\x21\x73\x58\xa4\x97\x29\x69\xba\x5d\x61\xd0\x97\x4c\x8b\x3f\xff\x58\x76\xce\x9e\xba\xb6\x68\x9d\x24\xd3\x97\x23\x3a\x70\x8b\x8e\x7b\x49\xa6\x6e\x77\x58\x6c\x75\x68\x7f\xca\x83\x1e\x69\xa4\xb7\x02\x2a\xf8\x14\x4f\xf3\xd3\x54\xd5\x52\xb3\x0d\x16\xbc\x95\x54\x6c\x9e\x86\x11\x7e\x0e\x02\x99\xdd\xb8\x30\x72\xc5\xbc\x47\x33\x1f\x65\x46\xd9\xd5\x9b\xa9\x42\xcb\xc6\xc8\x80\x28\x38\x99\xb5\xdc\x14\x9d\x55\x55\x14\xd7\x78\xdf\xd6\x68\x44\x4b\xd2\xf8\xbe\x4c\xc0\xbf\xba\x4e\x8a\x6a\x36\x3b\x84\xcf\xfe\x77\xcd\x78\xf8\xa1\x19\xbf\x6f\x70\xd7\xec\xdb\x3e\x31\x8f\x2a\x8a\xb5\xb4\xce\xd7\x2b\x22\x5f\xed\x31\xb9\x20\xe7\x64\x1c\x29\xac\xbc\xdf\xdf\x5d\xf8\xef\xe3\xdd\x99\x5d\xa2\x3b\xea\x70\xe6\x61\x00\x83\x65\x38\x19\xcf\xa4\x41\x5b\x0f\xf3\xad\xa3\x7e\xa8\xc0\xa3\x6e\x15\xf3\x18\x1c\x3b\xcf\x67\x87\x96\xf9\xa6\xd0\x24\x3a\x85\x7d\x99\x8a\xae\x1c\x8d\x59\xec\x99\x56\x85\xd7\xad\xca\x6f\x07\x33\x03\x9c\x76\x09\xd3\xa7\x82\xe9\xaa\x13\x7a\xdc\xe1\x6b\xe8\xb1\x3c\xa0\xd3\x14\x8f\x83\x3d\xa1\xc7\xeb\x93\xdf\xb8\xe3\xac\xf3\x5b\x78\xb1\x89\x45\xe4\x89\xea\x6b\x21\xdd\xc3\x85\xb7\x9e\x97\x07\xfc\xf3\x69\x11\xea\x73\xfc\x85\xf2\xd0\xe6\x5c\x53\x3f\xe0\xde\xc1\xf3\xa7\x82\x2f\x8e\x0c\x1a\x4e\x02\xe7\x81\x21\x21\xa7\xf2\x3c\xd5\x4e\x33\xa5\xd0\xf9\x28\x75\x2a\xef\x79\x79\xe8\xfd\x0d\xc8\xa8\x3d\x70\xc6\x1b\x14\xcb\xa3\xb2\x78\x8d\x60\x8c\x22\x60\x42\x38\x58\xae\x60\xc5\x1c\x76\x36\xae\x62\xfc\x5e\xaf\x15\x0b\x46\xc8\xf3\x0c\xa0\x5f\x64\x7d\x96\x95\x25\xfc\x1b\xed\x08\xff\x24\x42\xf8\x7f\x20\xfc\x2f\x6a\x39\x12\xcf\xd7\x96\x34\xa4\xe8\x83\x92\x39\x87\xde\x45\x39\x8b\x40\xf4\x81\x3c\xde\xc3\xdf\x42\x4b\x03\xba\x73\x1e\x1a\xb6\x45\x48\xd9\x80\xe2\xdc\x11\xd2\x78\x3a\x71\x45\xaa\x74\xd3\x8b\xec\x6a\xd2\x8e\xe7\x9f\x84\xc8\xb7\x63\xf7\x5a\xd7\x9b\x33\xb8\x9c\x0a\xfd\x31\x11\xfa\xbd\xa4\xef\x09\xf8\x9e\x80\xbf\x5c\x02\xa6\x30\xea\x1c\x9e\xa7\x1c\x78\x4a\xc4\x30\x8d\xa9\xe1\xde\x5f\x0c\xc1\xe5\x0a\x2e\xba\x79\x7a\x1d\x4f\x51\x79\x35\x94\x42\x68\xbc\x1e\x3e\xa1\x7a\x2d\x64\x00\x2c\x7b\xac\xd3\x6a\xd3\x24\x92\x1f\xb8\xe2\xa3\x85\x83\x8c\xaf\x01\x00\x00\xff\xff\x64\x0f\x2d\xc0\x86\x0a\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/templates": &vfsgen۰DirInfo{ + name: "templates", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + }, + "/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl": &vfsgen۰CompressedFileInfo{ + name: "install.yaml.tmpl", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1407, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xc1\x8e\xdb\x46\x0c\xbd\xef\x57\xb0\x1b\xb7\xa7\x4a\x76\x0c\xf4\x22\xc0\x28\x92\xa2\x40\x0b\xf4\x54\xa7\xed\x21\x0d\x84\xb1\x86\xb2\xa7\x3b\xe2\x68\x49\xce\xee\xaa\xaa\xf3\xed\xc5\xc8\x96\x6c\xaf\x1d\xe4\x36\x22\x1f\xdf\x3c\x92\x4f\x93\x65\xd9\x9d\x74\xa2\xd8\xd8\xe2\x0e\x20\x92\x53\x49\x07\x80\x0c\xc8\x34\x58\x80\x23\x51\xe3\x3d\x72\x2e\xc8\x4f\xae\xc2\x21\x0b\x80\x64\x36\x1e\x0b\x50\x8e\x63\xa8\x0a\xa4\x48\x2a\x05\xfc\x77\x8c\x00\x7c\xfc\x83\x9c\x7e\x9a\x3e\x7f\xc7\xc7\xe8\x18\x65\x45\xa8\xcf\x81\x1f\xb2\x40\xde\x11\xe6\x6a\x78\x8b\x3a\xc1\xde\xd5\x8a\xfc\x15\xcc\xc7\xf5\x41\xcf\x89\xfc\x43\xd7\xe2\x4a\x5c\xd3\x7a\x9c\x62\x3f\xbf\x60\xb5\x56\xc3\xba\x9a\x87\x56\xe7\x53\x37\x27\x9a\x5f\x0f\xa1\x13\xcd\x5f\x86\x14\xed\xfb\x6e\xd5\x44\xaf\x2e\x8b\x82\x7c\x7e\xf7\x1b\x78\xf7\x14\x9c\x85\x28\x8e\xb6\xa0\x3b\x04\x51\x43\xd6\xb0\x85\xf5\xfa\x17\x68\x03\x2b\x48\x80\x0f\xc8\x6c\xea\xc0\x0d\x98\xb6\xf5\x1d\x54\x86\x28\xe8\x00\x89\xa4\xce\x1f\xb9\xda\x20\x9a\x1d\x55\xe5\xf0\x3e\x2a\x18\xdb\x38\x12\x68\x4c\x37\x80\x35\x80\xc5\x4d\xdc\x82\x75\xf2\x30\x6e\x03\x5a\x0e\x1b\x8f\x8d\xe4\xa3\xa4\x34\xb0\x31\xfb\x3d\x88\xec\x2c\x3c\x3b\xef\x21\x0a\x1e\x24\x2d\x97\x60\x28\xa9\x46\x96\xf9\x49\x5c\x65\x28\xed\x8d\xb0\xd2\xfc\x62\xef\x89\x22\x97\x50\x3d\x4c\x23\xb7\x1c\x5a\x47\x47\x7b\x9c\x43\xdf\x2e\xb2\x84\xce\xd2\x3d\x79\x15\xa8\x9e\x10\xb7\x3d\x71\xd8\xde\x40\xfd\xe9\x22\xf8\x9b\x13\x45\x5a\x2b\xa3\x69\x56\x5f\xce\x2c\x97\xcb\xe5\x9d\x68\x60\xb3\xc5\xa4\xa6\x76\x1e\x27\xd7\xb6\x46\x77\x05\xdc\x5c\xf6\x80\x1b\xcc\x5e\x00\x87\x30\xf6\xd5\x04\x8b\x05\x2c\x7e\x58\x2c\x5e\xfb\x78\x92\xe0\x06\x07\x5e\xf6\xf0\xe6\x9b\xf9\xc6\xd1\x7c\x63\x64\x07\x19\xbe\x9c\xf7\x1c\xd9\x43\x96\x31\x2a\x77\xf0\x76\x01\xf7\xb3\xde\x6d\xc9\xa9\x0b\x54\x22\xd9\x36\x38\xd2\xfd\x8f\x7d\x9f\x33\x3e\x46\x14\xcd\xd9\x3c\x97\x8f\x11\xb9\xdb\xef\xbf\x0b\xb2\x1a\x75\xdb\x7b\xc8\x02\x8c\xa5\xf9\x3f\x12\xe8\xec\x96\xda\x1b\xad\x0c\x8f\xe6\x81\xbf\x2f\x06\xf6\x6d\xff\x19\x5c\x3d\x3a\xa2\xd4\x50\x4a\x93\x38\x45\xcb\xc1\x48\x9f\xf7\x17\xf0\x4c\x6e\xd4\xa3\x17\xbc\x02\x5a\x98\xf5\x23\x6b\x62\xda\xdf\x2a\x24\xeb\xea\xab\xca\x9f\x60\xd6\x07\x29\xab\x9d\x21\x42\xff\xba\x2e\xfb\xf3\x90\x7e\x42\x16\x17\xe8\x2a\x1d\xd2\x18\xd3\x66\x8c\x23\xe4\xd2\x3b\x8a\x2f\x65\xc0\x66\x7f\xff\x0a\x39\xeb\x37\x46\x30\xb2\x2f\x6b\x6f\xb6\x57\x3c\xee\x8b\x03\x8d\x16\x9f\x8c\x6d\x40\x50\xf5\xec\x05\x01\x38\x78\xa6\x52\x0f\x8c\x9b\xe4\x9b\xd6\x88\x3c\x1f\x1e\xcc\xf4\x3b\x5d\x3e\x98\x55\xe0\xb1\x58\x64\x57\x9a\xa8\xbb\xc0\xee\x5f\xb4\xe5\x03\x76\x52\xc0\xac\x4f\xe1\x74\xde\xdf\xfd\x1f\x00\x00\xff\xff\x42\xeb\x6b\x25\x7f\x05\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/variables.tf": &vfsgen۰CompressedFileInfo{ + name: "variables.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 2232, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xef\x6b\xe3\x46\x10\xfd\xee\xbf\x62\xf0\x97\x24\xe0\x48\xce\xd1\xc0\x9d\xe0\x3e\x04\xc7\xe5\x0e\xee\xae\xa1\x49\x69\xa1\x14\x31\xde\x1d\x49\x83\x57\xbb\xea\xce\xca\x8e\x29\xfd\xdf\xcb\xea\x47\x92\x73\x14\xa8\x4b\xf3\x29\xd8\xbb\x6f\xde\x7b\xf3\x9e\xac\x1d\x7a\xc6\x8d\x21\x98\x57\x21\x34\x39\x59\xdd\x38\xb6\x61\x0e\x7f\xcd\x00\xc2\xa1\x21\x18\xfe\x3e\x82\x04\xcf\xb6\x9c\x01\x68\x12\xe5\xb9\x09\xec\x2c\x7c\x84\xf9\x57\x0c\xaa\xda\xb8\x47\xf8\xf4\xf0\x70\x07\x9e\x50\x5f\x3a\x6b\x0e\x30\x62\xc1\x39\x25\x65\x02\x11\x3f\x4b\xd3\x7a\x38\x9d\xd0\x23\xd6\x8d\xa1\x44\xb9\x3a\x7b\xbf\x7c\xbf\xbc\x48\xe6\xb3\xbf\x67\xb3\x67\x42\x4e\x72\x55\xa1\xb5\x64\x4e\x61\xf3\xa3\xc1\xa0\xd0\xc3\xca\xd9\x80\x6c\xc9\xc3\x17\xb6\xed\x23\x0c\x50\x10\x1c\xb0\x95\x80\xc6\x40\xe1\x5d\x0d\xe7\x12\xe2\xb8\x05\x6c\x28\xe0\x02\xd0\x34\x15\x2e\x80\x74\x49\x91\x50\x84\x2f\xb0\x35\x61\x98\x3a\xef\x4f\xbf\x66\xba\x23\x2f\xec\xec\xff\xc1\x74\x80\x7a\xc9\xf4\xbc\x70\x1e\x06\xc3\xe0\xec\xdd\xd5\x87\xab\xe4\x3a\x59\x9e\xc1\x25\x08\x51\xe7\xac\x64\x69\xba\xdf\xef\x93\xa2\x07\xbd\x34\x11\x2a\x71\xbe\x4c\x3d\x19\x42\x21\x49\x27\xf5\xa8\xd6\x7b\xb2\xe1\x48\x90\x76\x7b\x6b\x1c\xea\xbc\xf1\x2e\x38\xe5\x4e\xda\xc0\xdd\x70\x07\xf8\xee\xb7\x35\x48\xe5\x5a\xa3\xa1\x15\x8a\x82\x46\x60\x08\x15\xc1\x96\x7c\xdc\x08\x5a\x0d\x6c\x39\x78\x9d\xc0\x6d\xcf\x4e\xe2\xd9\x4e\xd6\x02\xf6\x15\xab\x0a\x3c\xfd\xd9\xb2\x27\xe9\x41\x95\xab\x1b\x36\xa4\x61\xcf\xa1\x02\xe5\x0f\x4d\x70\x20\x6d\xd3\x38\x1f\x12\xf8\xc5\xb6\x42\x1a\xb8\x00\x85\xaa\x22\x9d\x8f\x36\xb2\x40\xf0\x2d\x4d\xf9\xd0\x0d\x3b\x72\xe1\xfb\xdb\x53\x16\x6c\x9c\x33\xaf\x0d\xf8\xb5\xa2\x50\x91\xef\x34\xba\x86\x3c\x06\xb6\x25\xc8\x41\x02\xd5\xa3\x1f\x51\xc5\xc6\xb9\x30\xa8\x7f\x11\xc8\xb1\x20\x90\xa2\x08\x05\xe9\x45\x24\xf0\xcd\x05\x82\x50\x61\xe8\x70\x51\xd7\x6c\xa1\x6e\x25\x40\x85\x3b\x7a\x32\x96\x7a\x6b\x9f\x13\x09\x6c\x83\x7b\x06\xed\x31\x27\x1c\x28\xd0\x08\x7d\xaf\x7f\xa0\x95\x6b\x96\xed\x29\x01\xb8\x65\xd9\x82\xa6\x1d\xab\x6e\xe7\xfd\x02\x23\xab\x51\x67\xe3\x5d\xc1\x86\x64\x34\x63\xfc\x7c\xd2\xb0\xfe\xe9\x91\x6a\xda\xa5\xa2\x71\x32\xc4\xe3\x97\xc7\xfb\x1b\x8b\x95\x77\x6d\xc8\x1d\xd5\x27\xc9\x58\xdf\xfd\xbc\x5e\xdd\x3c\xac\x6f\x33\xb8\x6f\x48\x71\x71\x00\xb4\xf0\xd3\xfa\x2b\x70\x8d\x25\x01\xeb\x28\x2f\x26\x1b\x05\x36\x28\x04\xb1\xa6\x2f\x84\x62\x07\xd5\x0b\xc0\x9a\x17\xb0\xab\xf7\xe8\x29\xf7\xb8\x5f\xc0\x23\xd9\x0b\x70\x1e\x0c\xc5\xfd\x6d\x0c\xda\xed\xd3\xfd\x51\x5f\x37\x67\x4a\xf1\x91\xd2\xbe\x49\x39\xfa\x52\xa6\x14\x1a\x96\x70\xde\xcb\xbc\x78\xad\xf3\x46\x6b\x8e\xff\xa3\x79\x6a\xa4\x2f\xdb\x9a\x6c\x5f\xc3\xc6\xbb\x1d\x6b\x02\x0c\x4f\xa1\x9d\x60\xf4\xfb\x1f\xd3\xd9\x09\x2e\x97\x1a\x8d\x21\x09\x6f\xe6\x68\xba\x45\x9f\x87\x50\xbc\xf5\x98\x0c\xae\xb3\x6a\x44\x87\x88\xfe\xef\x72\x2d\x52\xe5\x5b\x3a\xfc\x07\xab\xee\xef\x3f\x41\xd3\x6e\x0c\x2b\x88\x00\xdd\xbe\x5a\x21\x0f\x67\xca\x79\x3a\x3b\xfe\x05\xe3\xd2\x76\xce\xe6\xca\xa8\x5c\x39\x5b\x70\x79\x4a\x00\x3f\x0f\xd7\x61\xf5\x65\x05\x62\xb9\x69\xa8\x5f\x09\x5b\x65\x5a\x1d\x63\xd6\x59\xd0\x23\xb7\xbe\x8b\xdb\x31\x07\xeb\x34\xe5\x16\x6b\x3a\x65\xf2\x37\xac\x09\x5c\xd1\xa1\x47\x80\xb4\x46\x55\xb1\xa5\x49\xf0\x1a\xd5\x49\xaf\x0b\x37\x2b\x40\xad\x3d\x89\x00\x6b\xb2\x81\x8b\x43\xac\xfb\xf1\xac\xa1\x37\xd7\xef\xb2\xeb\x1f\xb2\xe5\x32\xc3\xab\xec\x83\xca\x90\xfa\xf7\x84\x7f\x02\x00\x00\xff\xff\xca\x05\x60\x54\xb8\x08\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/versions.tf": &vfsgen۰CompressedFileInfo{ + name: "versions.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 320, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x3d\x0a\xc3\x30\x0c\x85\x77\x9f\x42\xe4\x00\x8a\x93\x74\x4d\xaf\x52\xdc\x58\x25\x86\x3a\x72\x65\x27\x14\x4a\xee\x5e\x9a\x1f\xf0\x60\xe8\xa2\xe1\xe9\xd3\xa7\x97\x48\xc4\x3c\x58\x3c\x7c\x14\x80\xd0\x6b\x76\x42\xf6\xb6\x90\x44\xc7\x13\xf4\x50\x5d\x7b\xd0\xd8\x74\x95\xca\xf7\x41\x78\x71\x96\x24\x6e\x67\x00\x89\x7c\x78\x9a\x44\xd0\x1f\x01\x40\xe4\x59\x06\x82\x9f\x62\x34\x71\x74\x03\x4b\xa8\x4f\xae\x3a\xa0\xec\x4f\x8b\x2d\xea\x3d\x5f\xb7\xe9\x4d\x1a\xc6\x3b\xbf\xcb\xce\xc0\x91\x9c\xe5\xa9\x3e\xb1\x82\x52\xe3\x05\x9b\x5c\x29\x66\xb2\xec\xff\x95\xdc\xa9\x82\xaf\x43\x9d\x57\x5c\xd5\xaa\xbe\x01\x00\x00\xff\xff\x84\x28\xba\x7e\x40\x01\x00\x00"), + }, "/terraform-modules/node": &vfsgen۰DirInfo{ name: "node", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), @@ -8316,6 +8348,7 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/dns"].(os.FileInfo), fs["/terraform-modules/google-cloud"].(os.FileInfo), fs["/terraform-modules/kvm-libvirt"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar"].(os.FileInfo), fs["/terraform-modules/node"].(os.FileInfo), fs["/terraform-modules/packet"].(os.FileInfo), fs["/terraform-modules/platforms"].(os.FileInfo), @@ -8404,18 +8437,14 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/LICENSE"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/bootkube.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/groups.tf"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller_profiles.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf"].(os.FileInfo), - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/profiles.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/ssh.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/versions.tf"].(os.FileInfo), fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf"].(os.FileInfo), - } - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/cl/install.yaml.tmpl"].(os.FileInfo), + fs["/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker_profiles.tf"].(os.FileInfo), } fs["/terraform-modules/bootkube"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/bootkube/.gitignore"].(os.FileInfo), @@ -8551,6 +8580,16 @@ var vfsgenAssets = func() http.FileSystem { fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/kvm-libvirt/flatcar-linux/kubernetes/workers/cl/worker.yaml.tmpl"].(os.FileInfo), } + fs["/terraform-modules/matchbox-flatcar"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/matchbox-flatcar/groups.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/profiles.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/templates"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/variables.tf"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/versions.tf"].(os.FileInfo), + } + fs["/terraform-modules/matchbox-flatcar/templates"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl"].(os.FileInfo), + } fs["/terraform-modules/node"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/terraform-modules/node/README.md"].(os.FileInfo), fs["/terraform-modules/node/bootstrap-tokens.tf"].(os.FileInfo),