diff --git a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf index 305103c21..fe323e493 100644 --- a/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf +++ b/assets/terraform-modules/bare-metal/flatcar-linux/kubernetes/controller.tf @@ -13,8 +13,22 @@ module "controller" { set_standard_hostname = false clc_snippets = concat(lookup(var.clc_snippets, var.controller_names[count.index], []), [ < "$asset_dir/$mac" diff --git a/assets/terraform-modules/matchbox-flatcar/ssh.tf b/assets/terraform-modules/matchbox-flatcar/ssh.tf new file mode 100644 index 000000000..4d37e2595 --- /dev/null +++ b/assets/terraform-modules/matchbox-flatcar/ssh.tf @@ -0,0 +1,14 @@ +resource "null_resource" "reprovision-node-when-ignition-changes" { + # Triggered when the Ignition Config changes + triggers = { + ignition_config = matchbox_profile.node.raw_ignition + kernel_args = join(" ", var.kernel_args) + kernel_console = join(" ", var.kernel_console) + } + # Wait for the new Ignition config object to be ready before rebooting + depends_on = [matchbox_group.node] + # Trigger running Ignition on the next reboot (first_boot flag file) and reboot the instance, or, if the instance needs to be (re)provisioned, run external commands for PXE booting (also runs on the first provisioning) + provisioner "local-exec" { + command = templatefile("${path.module}/pxe-helper.sh.tmpl", { domain = var.node_domain, name = var.node_name, mac = var.node_mac, pxe_commands = var.pxe_commands, asset_dir = var.asset_dir, kernel_args = join(" ", var.kernel_args), kernel_console = join(" ", var.kernel_console), ignition_endpoint = format("%s/ignition", var.http_endpoint), ignore_changes = var.ignore_changes }) + } +} diff --git a/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl index 7837a9859..1f08fdd7e 100644 --- a/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl +++ b/assets/terraform-modules/matchbox-flatcar/templates/install.yaml.tmpl @@ -67,6 +67,7 @@ storage: echo 'set linux_append="${kernel_args} ignition.config.url=${ignition_endpoint}?mac=${mac_address}&os=installed"' >> /tmp/oemfs/grub.cfg echo 'set linux_console="${kernel_console}"' >> /tmp/oemfs/grub.cfg umount /tmp/oemfs + ${install_pre_reboot_cmds} systemctl reboot passwd: users: diff --git a/assets/terraform-modules/matchbox-flatcar/variables.tf b/assets/terraform-modules/matchbox-flatcar/variables.tf index 841e7b961..bb4ee660c 100644 --- a/assets/terraform-modules/matchbox-flatcar/variables.tf +++ b/assets/terraform-modules/matchbox-flatcar/variables.tf @@ -88,3 +88,31 @@ variable "wipe_additional_disks" { description = "Wipes any additional disks attached, if set to true" default = false } + +variable "ignore_changes" { + description = "When set to true, ignores the reprovisioning of the node (unless the MAC address flag file is removed to force a PXE install)." + type = bool + default = false +} + +variable "asset_dir" { + description = "Path to a directory where generated assets should be placed (contains secrets)" + type = string +} + +variable "node_domain" { + type = string + description = "Node FQDN (e.g node1.example.com)." +} + +variable "pxe_commands" { + type = string + description = "shell commands to execute for PXE (re)provisioning, with access to the variables $mac (the MAC address), $name (the node name), and $domain (the domain name), e.g., 'bmc=bmc-$domain; ipmitool -H $bmc power off; ipmitool -H $bmc chassis bootdev pxe; ipmitool -H $bmc power on'." + default = "echo 'you must (re)provision the node by booting via iPXE from http://MATCHBOX/boot.ipxe'; exit 1" +} + +variable "install_pre_reboot_cmds" { + type = string + description = "shell commands to execute on the provisioned host after installation finished and before reboot, e.g., docker run --privileged --net host --rm debian sh -c 'apt update && apt install -y ipmitool && ipmitool chassis bootdev disk options=persistent'." + default = "true" +} diff --git a/ci/baremetal/baremetal-cluster.lokocfg.envsubst b/ci/baremetal/baremetal-cluster.lokocfg.envsubst index 5544e8fdc..4e01ee46b 100644 --- a/ci/baremetal/baremetal-cluster.lokocfg.envsubst +++ b/ci/baremetal/baremetal-cluster.lokocfg.envsubst @@ -31,6 +31,7 @@ cluster "bare-metal" { "node2", "node3", ] + pxe_commands = "true" # The VMs are booted up outside of the CI Docker image at the right time already and we will not reprovision nor could do so because the VMs are managed at another level # Adds oidc flags to API server with default values. # Acts as a smoke test to check if API server is functional after addition # of extra flags. diff --git a/docs/configuration-reference/platforms/baremetal.md b/docs/configuration-reference/platforms/baremetal.md index 9183a78c5..2d3f3ceac 100644 --- a/docs/configuration-reference/platforms/baremetal.md +++ b/docs/configuration-reference/platforms/baremetal.md @@ -132,6 +132,8 @@ cluster "bare-metal" { network_ip_auto_detection = "can-reach=172.18.169.0" wipe_additional_disks = true + + pxe_commands = "bmc=bmc-$node; ipmitool -H $bmc power off; ipmitool -H $bmc chassis bootdev pxe; ipmitool -H $bmc power on" } ``` @@ -158,6 +160,16 @@ os_version = var.custom_default_os_version ``` +You should set a valid `pxe_commands` value to automate the provisioning, e.g., with IPMI as sketched above or a bit more reliable +as done in [Racker here](https://github.com/kinvolk/racker/blob/0.1.5/bootstrap/pxe-boot.sh), or for libvirt VMs with some +`virsh …; virt-install …` commands as done in [Racker here](https://github.com/kinvolk/racker/blob/0.1.5/bootstrap/prepare.sh#L637). +PXE boots are normally only needed for the first OS installation and as long as SSH works they will be skipped for regular reprovisioning. +This is controlled by the existence of the MAC address flag file under `cluster-assets` and you can delete it to force a PXE installation +when the next reprovisioning takes place after a userdata change. + +Depending on how the PXE boot was forced, you should ensure that afterwards persistent booting from disk is configured again when the PXE +installation is done, by setting a respective value for `install_pre_reboot_cmds`. + ## Attribute reference @@ -201,6 +213,8 @@ os_version = var.custom_default_os_version | `oidc.client_id` | A client id that all tokens must be issued for. | "clusterauth" | string | false | | `oidc.username_claim` | JWT claim to use as the user name. | "email" | string | false | | `oidc.groups_claim` | JWT claim to use as the user’s group. | "groups" | string | false | +| `pxe_commands` | Shell commands to execute for PXE (re)provisioning, with access to the variables $mac (the MAC address), $name (the node name), and $domain (the domain name), e.g., `bmc=bmc-$domain; ipmitool -H $bmc power off; ipmitool -H $bmc chassis bootdev pxe; ipmitool -H $bmc power on` | "echo 'you must (re)provision the node by booting via iPXE from http://MATCHBOX/boot.ipxe'; exit 1" | string | false | +| `install_pre_reboot_cmds` | shell commands to execute on the provisioned host after installation finished and before reboot, e.g., `docker run --privileged --net host --rm debian sh -c 'apt update && apt install -y ipmitool && ipmitool chassis bootdev disk options=persistent'` | "true" (a no-op) | string | false | | `conntrack_max_per_core` | Maximum number of entries in conntrack table per CPU on all nodes in the cluster. If you require more fain-grained control over this value, set it to 0 and add CLC snippet setting `net.netfilter.nf_conntrack_max` sysctl setting per node pool. See [Flatcar documentation about sysctl](https://docs.flatcar-linux.org/os/other-settings/#tuning-sysctl-parameters) for more details. | 32768 | number | false | | `wipe_additional_disks` | Wipes any additional disks attached to the machine. | false | bool | false | diff --git a/docs/quickstarts/baremetal.md b/docs/quickstarts/baremetal.md index 1238c673d..bb8e37665 100644 --- a/docs/quickstarts/baremetal.md +++ b/docs/quickstarts/baremetal.md @@ -8,6 +8,9 @@ weight: 10 This quickstart guide walks through the steps needed to create a Lokomotive cluster on bare metal with Flatcar Container Linux utilizing PXE. +We recommend you to check out [Racker](https://github.com/kinvolk/racker) for an integrated solution +based on the Lokomotive bare metal platform. + By the end of this guide, you'll have a working Kubernetes cluster with 1 controller node and 2 worker nodes. @@ -15,14 +18,14 @@ worker nodes. * Basic understanding of Kubernetes concepts. * Terraform v0.13.x installed locally. -* Machines with at least 2GB RAM, 30GB disk, PXE-enabled NIC and IPMI. +* Machines with at least 2.5GB RAM, 30GB disk, PXE-enabled NIC and IPMI. * PXE-enabled [network boot](https://coreos.com/matchbox/docs/latest/network-setup.html) environment. * Matchbox v0.6+ deployment with API enabled. * Matchbox credentials `client.crt`, `client.key`, `ca.crt`. * An SSH key pair for management access. * `kubectl` installed locally to access the Kubernetes cluster. -Note that the machines should only be powered on after starting the installation, see below. +Note that without a proper `pxe_commands` value the machines should only be powered on manually after starting the installation, see below. ## Steps @@ -171,6 +174,9 @@ cluster "bare-metal" { "node2", "node3", ] + + # Automation to force a PXE boot, a dummy sleep for now as you will do it manually. + pxe_commands = "sleep 300" } ``` @@ -197,7 +203,9 @@ Run the following command to create the cluster: lokoctl cluster apply ``` -**Proceed to Power on the PXE machines while this loops.** +**Proceed to Power on the PXE machines while this loops, but only after Matchbox has the configuration ready.** +See the [configuration reference](../configuration-reference/platforms/baremetal.md) on how to properly configure `pxe_commands` +to automate the provisioning reliably. Once the command finishes, your Lokomotive cluster details are stored in the path you've specified under `asset_dir`. diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index be20b65a9..94c4e1691 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -6128,16 +6128,16 @@ var vfsgenAssets = func() http.FileSystem { "/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), - uncompressedSize: 955, + uncompressedSize: 1307, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x06\xd3\x85\x04\x5c\xa7\x87\xa5\x14\xb3\x39\xb6\xd7\x7e\x40\x08\x42\x91\x27\x1b\x11\x59\x63\x34\xe3\xa5\xdb\x90\x7f\x2f\x92\x1d\x56\x9b\x04\x52\xe1\x8b\x67\xde\xd3\x7b\xf3\x46\x3d\x75\xa3\x47\xa8\x2c\x05\x89\xe4\x3d\xc6\x0a\x4e\x0a\x80\x69\x8c\x16\xe1\xfa\xac\xa1\x6a\x9a\xd5\xf4\x15\x14\x05\x60\x69\x0c\x72\x83\x87\x35\x78\x0c\xaf\x72\x58\xbc\x99\xd8\x7c\x30\x74\x30\x3d\xf2\x32\xf1\xfc\xc8\x32\x17\x3e\xf1\x32\xa1\x68\x66\x8d\x0b\x9f\x75\xa1\xf7\x50\xa3\x0b\xac\xff\x52\xb8\x1e\x67\xd2\x38\xfe\x60\xdd\x51\x6f\x5c\xf8\x90\x19\x83\x68\x17\x3a\xfc\xf3\x19\x9e\x1b\x4d\x6e\x14\xce\xd3\xed\x8c\xf1\xcd\x59\xd4\x6e\x80\x35\x4c\x99\x36\x3b\x22\x39\x8e\x3b\x6c\xee\x03\x53\xc8\x7c\xd0\x47\x7c\xe7\xbb\xbe\x2e\x4d\x05\x60\x06\x97\x78\x18\xaf\x71\x7b\x8a\xbd\x91\x45\xf5\xc4\xcd\x13\x57\xf5\x4d\x66\xf5\xbd\x09\x73\xea\x46\x5b\x8c\x37\xfb\xba\xe3\x7d\x02\x2a\x80\xf4\xeb\x51\xb4\x37\x3b\xf4\x5c\x2e\x98\xe8\x38\x0e\x39\xfc\x40\x1d\x6a\x1e\xd0\xba\xbd\xb3\x33\x72\x76\x75\xb5\x96\x4d\x91\xe5\xb6\x86\xd3\x39\xb9\x62\x14\xcd\x62\x42\x67\x62\xa7\x0f\xc4\x32\x3d\x8a\x35\xec\x8d\xe7\xbc\x19\x6f\x35\x07\x37\x0c\x28\x9c\xf7\x11\xac\x91\x45\x61\xa0\x04\xfc\x97\xf0\x66\xbb\xac\x61\xa3\xd2\x24\x2f\x2f\x3f\x7f\xff\x52\x2c\x14\xcd\x2b\xb6\x0a\x60\xef\x3c\x72\x9b\x7b\x5f\x61\x30\x72\x68\x61\x85\x62\x57\x17\x67\x6a\x4a\x20\xc3\xde\x59\xb0\x6f\x21\x12\xc9\x5c\xee\xa9\xc3\x16\xbe\x7d\x7f\x7e\x9e\x0b\xc9\x09\x06\x99\x6f\x4c\xc7\x05\xef\x02\xb6\xf0\xe5\xf4\xd0\xe9\x59\x25\x73\x89\x54\x2b\x80\xed\x52\x9d\xd5\xbf\x00\x00\x00\xff\xff\x9b\xa9\x2a\xb9\xbb\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\xc1\x6a\xdc\x30\x10\xbd\xeb\x2b\x86\xa5\x81\x04\x36\x76\x0f\xa1\x14\x93\x3d\x36\xb4\xa7\x40\xd3\x5b\x08\x42\x96\x66\xd7\xc2\xb2\x64\x34\xe3\x34\xdb\x34\xff\x5e\x24\xdb\x5d\x67\xb3\x90\x1e\xba\xec\xc5\x9a\xf7\xf4\xde\x9b\xa7\x2e\x98\xc1\x21\xac\x74\xf0\x1c\x83\x73\x18\x57\xf0\x2c\x00\x28\x0c\x51\x23\x1c\xff\x36\xb0\x2a\x8a\x72\xfc\x2f\x28\x02\x40\x87\xc1\xf3\x1b\x3c\x6c\xc0\xa1\xdf\x71\x73\xfe\xa8\x62\x71\x60\x48\xaf\x3a\xa4\x8b\xc4\x73\x03\xf1\x74\xf0\x8a\x97\x09\x8b\x61\xd6\x98\xf9\x24\x17\x7a\xef\x6a\x18\x4f\xf2\x57\xf0\xc7\x71\x46\x8d\xf6\x33\x49\x13\x3a\x65\xfd\x41\x66\xf0\x2c\xad\x37\xf8\xf4\x1a\x9e\x07\x45\x1e\x2c\x9c\xa7\xdb\x09\xe3\xa3\xd5\x28\x6d\x0f\x1b\x18\x77\x5a\xd4\x21\x70\x3b\xd4\x58\x9c\x06\xa6\x25\x53\x23\x5b\xdc\xd3\x49\x5f\xf3\x50\x00\xa8\xde\x26\x1e\xc6\x63\xdc\x36\xc4\x4e\xf1\xf9\xea\x8c\x8a\x33\x5a\xad\xdf\xec\x6c\x7d\x2a\x61\xde\xba\x92\x1a\xe3\x9b\xbe\x4e\x78\x1f\x81\x02\x20\x7d\x3a\x64\xe9\x54\x8d\x8e\x96\x05\x87\xd0\x0e\x7d\x5e\xbe\x0f\x06\x25\xf5\xa8\xed\xd6\xea\x09\x39\xb9\x3a\xaa\xe5\x7e\xb1\xcb\x87\x35\x3c\xbf\x24\x57\x84\x2c\x89\x95\x37\x2a\x1a\xd9\x04\xe2\xf1\x51\x6c\x60\xab\x1c\xe5\x66\x9c\x96\xe4\x6d\xdf\x23\x53\xee\xc3\x6b\xc5\xe7\x0b\x03\x4b\xc0\x3f\x09\xdf\x3f\x5c\xac\xe1\x5e\xa4\x24\xd7\xd7\x5f\x6e\x6f\xc4\xd6\x3a\xa4\x3d\x31\x76\x54\x09\x80\x4b\x48\xac\x0a\x62\x08\x9c\x51\x5d\xa2\x57\x62\x0c\x6f\x30\x95\x59\x41\x69\xf0\xb1\x34\x96\xda\xb2\xde\x5f\xe6\xd8\xe5\xf7\xdb\xdb\x1f\x13\x6a\x6c\xa9\x02\x7c\xe2\xab\xe9\xe8\xa7\xed\x51\x1e\xa4\x2a\xe0\x38\xe0\x34\xcb\xfc\x0a\xf2\x05\xc4\x21\xaa\x1d\x26\xbd\x8c\x1e\x85\x2f\xa1\x57\xdc\x54\x50\xda\x9d\xb7\x6c\x83\x97\x51\xf9\x59\x6c\x71\xe9\x5f\xd3\xc9\xb6\xc1\x0a\x3e\x7e\xba\x9a\x1d\xa4\xbd\xa0\x67\x9a\xa3\x00\x58\xef\xac\xc7\x0a\x7e\x8b\xc3\x83\xb8\x71\x6a\x97\xaf\x04\xeb\x8d\xd5\x8a\xad\xdf\x01\x37\x8a\xe1\xdb\x24\x0d\x51\xf9\x62\xc1\xb8\x6b\xc2\xe0\x0c\xd4\x08\x26\x3d\x17\x34\x50\xef\x81\x1b\x84\xbb\xbb\xaf\x40\x8c\xfd\x48\xd7\x0d\xea\x96\xc0\x72\xf1\x3a\x11\xb2\x2e\xe7\xe6\xff\x5b\xa2\x0f\xcf\xef\xbe\x84\x17\x91\xca\x4f\xa4\xb5\x00\x78\xb8\x10\x2f\xe2\x4f\x00\x00\x00\xff\xff\x5d\x40\xc3\xc2\x1b\x05\x00\x00"), }, "/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: 1036, + uncompressedSize: 1281, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x5d\xaa\xe3\x30\x0c\x85\xdf\xbd\x0a\x91\xa7\x29\x74\x32\x2b\xe8\x4a\x4a\x31\x1e\x5b\x4d\x4c\x1c\x29\x58\x4e\xdb\x61\xb8\x7b\xbf\x24\x69\xc8\x9f\xcb\x2d\x7d\x09\xe7\x3b\x1c\xfb\x48\x6e\xd9\xf5\x01\xa1\xb0\x4c\x29\x72\x08\x18\x75\x17\xf9\xee\x03\x16\xf0\x5f\x01\x08\xf7\xd1\x22\x1c\x7f\x17\x28\xca\xf2\xcf\xf4\x6f\x4d\xb2\xf5\x5f\x7e\xfd\xbe\x07\x93\xac\x89\x85\x02\xb0\xdc\x53\xca\xf8\xe0\x02\x01\xa9\x4a\xf5\xaf\x87\x89\xe5\x2a\x96\x4c\x8b\x72\x52\x00\xc4\x0e\xc7\xaf\xa3\x33\x67\xb9\x8e\x49\xa5\x27\x87\xaf\xdb\x6c\x6f\x8d\xcd\x04\xef\xec\xad\xb1\x07\xb7\xe3\x27\x05\x36\x6e\x68\x21\xb1\xe5\xb0\x75\x1f\x64\x05\xc0\xa2\x6d\x6d\x88\x30\x64\x03\x17\x79\x62\x1f\x18\xc5\x33\x7d\x62\xdf\xb2\x02\xa8\x53\xea\x34\x92\xeb\xd8\x6f\x9b\x9c\xd8\xb9\x74\xbd\xe1\x14\x40\x83\x91\x30\x68\x13\x2b\xc9\x65\xac\xe4\x05\xb6\x4c\xc2\x01\x3f\xc1\x6f\x59\x01\x78\x92\x64\xc6\xf6\x6c\xb0\x5a\xc8\x77\x1d\x26\x99\xc6\xca\xdc\xf4\xdd\x38\xd6\x3c\x75\xfe\x79\x7e\x67\xb8\xde\x4e\x4b\x8c\x76\x5e\x9a\xcc\x1d\xd6\xf2\x8a\x4e\xac\xa5\x1d\x72\x25\x4d\xce\x2d\xbd\x97\xc7\x2d\xa5\x64\x3c\x61\xd4\xc1\x53\xff\xd2\x8c\xed\x7e\x59\x76\xf2\xf0\x26\xa4\xd6\x0d\xfe\x93\x0f\x1b\x36\xcb\xc3\xc1\x2a\xf2\xc9\x33\x8d\x35\x58\xa6\xbb\xaf\x66\x72\x7a\x78\xab\x36\x36\x3d\x94\x8b\x61\x38\xa5\xb1\x35\x3a\xfd\xbe\xc7\x71\xa5\x37\xb2\x02\x78\xfa\x0e\xb5\x71\x6e\xcc\x36\x53\x4d\xb2\xf0\x59\x59\x7d\xa9\xef\x00\x00\x00\xff\xff\x9a\x4d\x14\x40\x0c\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\xdd\x6e\xdb\x30\x0c\x85\xef\xf5\x14\x44\xae\x56\xa0\xf3\x9e\xa0\x4f\x52\x14\x02\x2b\x31\xb6\x10\x89\x34\x44\xb9\xcd\x30\xec\xdd\x07\xdb\xc9\xfc\xa7\x20\x86\xef\xbe\x73\x44\x8a\x3c\x4a\xe2\x87\x48\x70\x72\xc2\x25\x4b\x8c\x94\x6d\x9f\xe5\x1c\x22\x9d\xe0\x8f\x01\x50\x19\xb2\x23\x38\x7e\x6f\x70\x6a\x9a\x5f\xf3\x9f\xb0\xb8\xee\x53\xae\x3f\xcf\x11\x8b\xc3\x7c\x32\x00\x4e\x06\x2e\x15\x1f\xbc\x41\x24\x6e\x4b\xf7\xe3\x0b\x73\xb3\x2a\xcb\x98\x48\x5f\x0c\x00\xaa\x52\xb1\x3e\xe4\xa3\x73\xb4\xfc\xc7\x06\x80\xc5\xd3\x64\xac\x4b\xf7\xa7\xbf\x4f\x4d\x35\x81\x3d\x5d\x3f\xee\xf6\x84\xae\xd2\xe3\xce\x9e\xd0\xd5\xdd\x5e\x12\x06\x7e\xe2\x9e\x45\x87\x03\xbc\x7c\x73\x14\xf4\xe3\xc4\x8b\x38\x89\xdb\x03\x0e\xd8\x00\x88\x5a\xd7\x21\x33\xc5\x6a\xc7\x0b\x9e\xb5\x5f\x94\x35\x08\x3f\xd2\xde\xb0\x01\xe8\x4a\xe9\x2d\xb1\xef\x25\x6c\xb7\x36\x6b\xef\x0b\xb6\x1b\x9d\x01\xb8\x50\x66\x8a\x16\x73\xab\xb5\x1a\x2b\xbc\x88\x9d\xb0\x4a\xa4\x47\xe2\x1b\x36\x00\x81\xb5\xe0\x34\x40\x17\x9d\x55\x0e\x7d\x4f\x45\xe7\x08\x89\x5c\x86\x7e\x8a\x50\x5d\xf5\xfa\x3c\x00\xaf\xf0\xfe\xf1\xb2\x94\xb1\x3e\xe8\xa5\x72\x87\x35\x5e\xa9\x8b\x58\x4d\x63\x5d\x2d\xb3\x73\xab\xde\xe3\xe9\x45\x70\xc1\xc0\x94\x6d\x0c\x3c\x5c\xad\x50\xda\xe7\x65\x87\xc7\xf7\xa7\x9d\xbd\xd0\x6f\x7d\x10\xd1\x3b\x1e\x1b\x6b\x39\x94\x20\x3c\x8d\xc1\x09\x9f\x43\x7b\x57\xce\x8f\x7c\x35\x8d\xcd\x1c\x9a\xc5\x30\x76\x89\xae\x23\x6f\x6f\xf7\x38\xa6\x7a\x83\x0d\xc0\x77\xe8\xc9\xa2\xf7\x53\x6d\x9c\xc7\xa4\x8b\xbe\x8a\xe7\x6e\x25\xd3\x94\xd6\x96\x74\x53\xa6\xe4\x61\xdc\x7e\x7f\x25\xeb\x24\x25\x64\xaf\x95\x9b\xaf\xf1\x6a\x2d\x7d\x26\x9b\xe9\x53\xa4\x58\x97\x46\xe3\x76\x2d\x3b\x6c\xfe\x9a\x7f\x01\x00\x00\xff\xff\xb0\x93\xbc\x0f\x01\x05\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -6149,16 +6149,16 @@ var vfsgenAssets = func() http.FileSystem { "/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: 4192, + uncompressedSize: 4440, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x4b\x8f\xdb\x46\x12\xbe\xf3\x57\x7c\xe0\x2c\x0c\x7b\x31\x24\x67\x66\x61\x7b\xe1\x85\x0e\x7b\x30\x10\x20\x0f\x03\xb6\x03\x1f\x8c\x81\xd0\x6a\x96\xc4\x8e\xc8\x6e\xa2\xba\x28\x8d\x10\xcf\x7f\x0f\xba\x29\xea\x65\x69\x46\x49\x74\xcc\x45\x02\xc9\xaa\xfa\xea\xeb\xae\xe7\x15\x3e\x91\xee\x98\xa0\x5d\xbb\x02\x89\x2e\xf1\xf9\xa7\x4f\x50\xde\x93\x78\x28\x5b\x62\xde\x4d\x48\x3b\x3b\x35\x33\x88\x83\x76\x56\xd8\xd5\x35\xb1\xcf\xf1\x7f\x2d\x66\xa1\x84\x7c\x14\xaa\x49\x72\x4f\xbc\x30\x9a\x12\x26\xef\x3a\xd6\x84\xd4\x76\x75\x3d\x1e\x1e\x53\xa4\x01\x27\xdb\x5a\xc9\x3c\x69\x26\xf1\x29\x7e\x4f\x00\xed\x3a\x2b\x18\xa1\x26\x3b\x93\xea\xe5\x42\x71\xbe\x15\x1d\x5b\xd5\x90\x7f\x95\x24\xc0\x15\xbe\x18\xa9\x5c\x27\x28\xa9\x25\x5b\xfa\xb1\xb3\xd7\x60\x6a\x9c\x50\x46\x0f\xa4\x83\xa5\xba\x84\x17\xc5\x12\x59\x2c\x95\x11\x4c\x1d\xa3\x51\xba\x32\x96\x3c\x26\x34\x75\x4c\xd1\x58\xa3\x44\x57\x13\xf7\x80\x19\xbb\xae\xf5\x50\x4c\x58\xb2\x11\x21\x7b\x0d\xad\x3a\x6f\xec\x0c\x0a\x25\xa9\xb2\x76\x7a\x9e\x27\xd8\xc1\xc5\x08\x5f\x13\x00\x68\x5c\xd9\xd5\xb4\xeb\x70\xcb\x6e\x6a\x6a\xba\x4e\x80\xfb\x24\xd2\xb3\x96\xb4\x18\x67\x23\x5b\x40\x56\x2d\x85\xff\x11\x52\xef\xab\x34\xbe\xab\x9c\x97\xfe\xdd\x01\xfd\xd2\x35\xca\x58\xff\x35\x1e\x52\x6e\x6c\x49\x0f\xf7\x51\xa3\xf3\xc4\x6b\x2b\xda\x31\xf5\x66\xc4\x34\x14\x0e\x68\x84\xf4\xcd\x4d\x13\xde\x3d\x06\x17\x5a\x76\x0b\xe3\x8d\xb3\xc4\x48\x83\x73\xe9\xda\x95\x00\x44\x36\x22\x63\xf4\x3d\x97\x3d\xd4\x7c\xe2\x9c\x78\x61\xd5\x8e\xb7\xd1\x11\xad\x94\xe4\xc5\x58\x15\x29\x8e\x90\xfe\xeb\x87\x0f\x3f\xbf\x2f\xb6\x32\x7f\xd1\x8d\x00\x17\x8c\xe4\x21\x3e\xc7\x5a\x8d\x35\xb1\x9c\xc6\x0b\x52\x99\xae\x0d\x59\xc9\xb4\xca\x35\xcb\x65\x70\xa3\xc5\xf3\xb1\x2f\x0d\x3c\xa7\xd5\x79\xb8\x73\x5a\x5d\x04\x37\x24\x33\xf1\x39\x84\x7b\xc9\x8b\x11\x5e\x03\x3f\x4f\x78\x8d\x7b\x29\xc2\x2d\x9d\x47\x37\xc8\x5d\x8c\x6c\x04\x7d\x9e\x6a\xc4\x3c\x49\x74\xa7\xf4\x0d\xd0\xc6\xd6\xc6\xd2\xa6\x3a\x01\xa9\x27\x41\x46\xe9\xf5\xe6\xb9\x2b\x1d\x9a\x05\x0e\xb3\x14\x01\x31\x3e\xb3\x25\x21\xbf\x9b\xc0\xfb\xca\xba\x72\x4b\x0b\x76\x4e\xde\x85\x9f\x3f\xa3\xd8\xb8\x12\x6f\x6e\x6e\xce\x51\xb9\xc2\xaf\xb1\x02\xa7\xe1\x20\x8a\x3c\x0d\xbd\xca\x90\x87\x54\x14\x3b\x56\x81\xa9\xab\x4b\x62\x70\x68\x65\xde\x2c\xa8\x5e\xc1\x58\x28\x0b\x53\x52\xd3\xba\x70\x05\x1b\x5b\x4b\xb5\xca\xf1\x89\x08\x95\x48\xeb\xdf\x15\x45\x67\xcd\x43\xee\x45\xe9\x39\x3d\xe8\x4a\xd9\x59\xa8\x7b\x4d\xa1\x8a\xbb\xbb\xff\xbe\xf9\xcf\xdb\xd8\x35\x4a\x12\x65\x6a\x9f\x0f\x24\xbe\x22\x2b\x7b\xd7\xbd\xaf\xe3\x05\xe1\x1e\x2f\x5e\xa0\x27\xd7\x22\xfb\xb8\xff\xb5\xc8\xf7\x9f\x73\x57\x97\x1b\x79\x6e\x90\xf1\x74\x5f\xe0\xf0\x96\xe6\xa5\x61\x64\xed\x81\xd5\x63\x92\x0b\xec\xd4\x82\x7f\x1f\x28\x1c\x5e\xc3\x31\x83\xfb\xa5\xf3\x88\x40\xd1\xa7\xdd\x50\x5b\x8f\xe3\x6f\x4b\xc2\x69\x0b\xcf\xab\xcf\x69\xf5\x84\x7a\x48\x87\x8b\x10\x0a\xc9\xf5\x34\x9d\x21\xe5\x4f\x69\x3f\xa7\x7a\x82\xc8\x26\xab\x8f\xe5\x55\xf6\x31\x1a\x78\x17\xc3\xeb\xa9\xe8\xe8\xb3\x29\xfb\x88\xd7\x43\x42\x7d\x27\x18\x72\x88\xe0\xa5\x9c\x74\xd3\x30\xc7\x95\xc6\xab\x49\x4d\x31\x87\x26\xdd\x74\x4a\x8c\x65\x65\x6a\x42\xcb\xc6\x4a\xc8\xb6\xda\xcd\x7c\x90\x6c\xd4\x9c\xe0\xc3\x88\x48\x0b\xe2\x95\x54\xe1\xa3\xf1\x10\x56\xd6\x37\x61\x48\x2a\x31\x51\x7a\x0e\x71\x1b\xac\xcf\xc4\xac\xa6\x8e\x9b\xf5\x94\x85\x25\x81\x49\x3a\xb6\x20\x66\xc7\x39\xbe\x10\x7c\x15\x67\xb4\x09\xa1\xf7\xc4\xc5\x01\x6e\x41\x30\x02\x67\x35\x6d\xac\x0d\x89\x3a\x33\x52\x75\x93\x98\x9c\x95\xf2\x95\xd1\x8e\xdb\x42\x06\xa8\xc2\x78\xdf\x91\x2f\xee\xde\xde\xde\xdd\x06\x07\xc3\xd0\x59\x2f\xa8\xcc\xf7\xce\xca\xaf\xbc\x50\xa3\xa5\x0e\xdf\xe3\x78\x18\x8f\xf7\xdb\x37\xbc\x5c\x9f\x4e\x66\x6e\x90\xb9\x1b\x64\x74\xd3\xe7\xe7\x6f\xae\x63\xab\xea\xa0\x93\x75\xbd\x78\x96\x59\x97\xb5\x6a\x46\xfc\x3f\xd0\x83\x11\xdc\xbe\x5a\x1f\xf5\xfd\x50\x9f\x85\xcd\x6c\x46\xec\x31\x5a\x17\xe4\xdd\xe1\xe5\xdc\xf9\xe6\xb0\x0f\x9f\xdb\xaa\xf7\xdb\xd9\x79\x1d\xef\x31\x79\x4c\x92\xfd\x7d\x60\x10\x1e\xf6\x01\x71\xf8\xf0\xcb\xfb\x9d\x25\x20\xce\xd6\xfd\x31\x6e\x64\xc5\xa1\x25\x0e\x57\x92\x5c\xc1\x59\xca\xc2\x28\x0a\x4f\xf5\x34\x0b\xb3\x2d\x95\xd0\x75\xe7\x85\x18\x9b\x31\xb2\x35\x76\x96\x3f\xb1\x34\x0c\xb6\xb3\x08\xd5\x77\xb8\xe3\x3b\x80\x54\xf1\xe6\xb7\x8b\x40\xa3\x56\x83\x83\x7d\x28\x86\x88\xdf\xe9\x75\x81\x67\x9e\xec\x07\xad\xb3\xf5\x0a\xa5\x23\x1f\xdc\x87\x28\x3f\x87\x12\xa8\x38\x53\x5f\xc3\xbb\x10\xa1\xcb\x18\xbc\xc2\xab\xc0\x77\x43\x24\x1a\xea\x13\xc9\x3a\xfc\xd8\x6f\x45\xfd\x42\xc1\x9d\xb5\x91\xe6\xd1\xe5\x61\x8f\x71\x7e\x62\x49\xba\xf0\x22\x71\x73\xde\xfa\x70\xfb\xfa\x8c\xf5\x61\x7d\x73\xd8\x02\xc6\x90\x19\x97\x86\x4f\x0f\x36\x7d\x54\xfd\x9d\x89\x66\x6f\x82\x59\x07\x69\xe1\x5a\x29\x86\x88\xf9\xa7\x00\x9e\x2e\x80\x07\x79\x7b\x7e\x09\xdc\xa8\x3c\x57\x06\x1f\x93\x3f\x02\x00\x00\xff\xff\xbd\x09\x46\x2c\x60\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x5d\x8f\xdb\xb6\x12\x7d\xd7\xaf\x38\xd0\x5e\x04\xbb\x17\x2b\x79\x77\x2f\x92\x5c\xa4\xf0\x43\x51\x04\x68\xd1\x8f\x00\x49\x8a\x3c\x04\x0b\x83\x26\xc7\x16\x63\x8a\x14\xc8\x91\xbd\x46\xb3\xff\xbd\x20\x65\xf9\x2b\xf6\xae\xdb\xfa\xb1\x2f\x36\x24\xcd\xcc\xe1\x21\x67\x86\x67\x2e\xf0\x81\x64\xeb\x09\xd2\x35\x4b\x10\x4b\x85\x8f\xbf\x7c\x80\x08\x81\x38\x40\x58\x85\x59\x3b\x26\xe9\xec\x44\x4f\xc1\x0e\xd2\x59\xf6\xce\x18\xf2\xa1\xc4\xf7\x92\xf5\x5c\x30\x85\x64\x64\x88\xcb\x40\x7e\xae\x25\x65\x9e\x82\x6b\xbd\x24\xe4\xb6\x35\x66\xd4\x3f\xe6\xc8\x23\x4e\xb1\x89\x52\x04\x92\x9e\x38\xe4\xf8\x23\x03\xa4\x6b\x2d\x63\x08\x43\x76\xca\xd5\xe5\x5c\xf8\x72\x63\x3a\xb2\xa2\xa6\x70\x95\x65\xc0\x05\x3e\x69\xae\x5c\xcb\x50\xd4\x90\x55\x61\xe4\xec\x35\x3c\xd5\x8e\xa9\xa0\x07\x92\x31\x92\x51\x08\x2c\x3c\x27\x16\x0b\xa1\x19\x13\xe7\x51\x0b\x59\x69\x4b\x01\x63\x9a\x38\x4f\x29\x58\x2d\x58\x56\x63\xf7\x80\xa9\x77\x6d\x13\x20\x3c\x61\xe1\x35\x33\xd9\x6b\x48\xd1\x06\x6d\xa7\x10\x50\x24\x94\x71\x72\x56\x66\xd8\xc2\xc5\x10\x9f\x33\x00\xa8\x9d\x6a\x0d\x6d\x2f\xb8\xf1\x6e\xa2\x0d\x5d\x67\xc0\x7d\x96\xe8\x59\x4b\x92\xb5\xb3\x89\x2d\xc0\xcb\x86\xe2\xff\x10\x79\x08\x55\x9e\xde\x55\x2e\x70\xf7\x6e\x8f\xbe\x72\xb5\xd0\x36\x7c\x4e\x9b\x54\x6a\xab\xe8\xe1\x3e\x79\xb4\x81\xfc\x2a\x8a\x74\x9e\xba\x30\xac\x6b\x8a\x1b\x34\x44\xfe\xea\xa6\x8e\xef\x1e\xe3\x12\x1a\xef\xe6\x3a\x68\x67\xc9\x23\x8f\x8b\xcb\x57\x4b\x89\x40\x64\x13\x32\x86\xdf\x72\xd9\x41\x2d\xc7\xce\x71\x60\x2f\x9a\xd1\x26\x3b\x52\x14\x45\x81\xb5\x15\x89\xe2\x10\xf9\x7f\x7e\x7c\xf7\xeb\xdb\xc1\xc6\xe6\x6f\x2e\x23\xc2\xc5\x20\x65\xcc\xcf\x91\x14\x23\x49\x9e\x8f\xe3\x45\xab\x42\x1a\x4d\x96\x0b\x29\x4a\xe9\xf9\x3c\xb8\x29\xe2\xe9\xd8\xe7\x06\x9e\xd1\xf2\x34\xdc\x19\x2d\xcf\x82\x1b\x8b\x99\xfc\x29\x84\x3b\xcb\xb3\x11\x5e\x01\x3f\x4f\x78\x85\x7b\x2e\xc2\x0d\x9d\x46\x37\xda\x9d\x8d\x6c\x02\x7d\x9e\x6a\xc2\x3c\x4a\x74\xab\xf5\xf5\xd0\xda\x1a\x6d\x69\xdd\x9d\x80\x3c\x10\xa3\xa0\xfc\x7a\xfd\xdc\x2a\x87\x7a\x8e\xfd\x2a\x45\x44\x4c\xcf\xde\x12\x53\xd8\x2e\xe0\x5d\x67\x59\xb9\x85\x85\x77\x8e\xdf\xc4\x9f\xbf\xe2\x58\x3b\x85\x57\x37\x37\xa7\xb8\x5c\xe0\xf7\xd4\x81\xf3\xb8\x11\x83\x32\x8f\x77\x95\xa6\x00\xae\x28\xdd\x58\x03\x4c\x9c\x51\xe4\xe1\xe3\x55\x16\xf4\x9c\xcc\x12\xda\x42\x58\x68\x45\x75\xe3\xe2\x11\xac\x63\x2d\xc4\xb2\xc4\x07\x22\x54\xcc\x4d\x78\x33\x18\xb4\x56\x3f\x94\x81\x85\x9c\xd1\x83\xac\x84\x9d\xc6\xbe\x57\x0f\xc4\xe0\xee\xee\xff\xaf\xfe\xf7\x3a\xdd\x1a\x8a\x58\x68\x13\xca\x9e\xc4\x67\x14\xaa\x5b\x7a\x08\x26\x1d\x10\xee\xf1\xe2\x05\x3a\x72\x0d\x8a\xf7\xbb\x5f\x07\xe5\xee\x73\xe9\x8c\x5a\xdb\xfb\x1a\x85\x9f\xec\x1a\xec\x9f\xd2\x4c\x69\x8f\xa2\xd9\x8b\x7a\xc8\x72\x8e\xad\x5e\xf0\xdf\x3d\x87\xfd\x63\x38\x14\x70\xb7\x75\x1e\x30\x18\x74\x65\xd7\xf7\xd6\xc3\xf8\x9b\x96\x70\x3c\xc2\xf3\xee\x33\x5a\x3e\xe1\x1e\xcb\xe1\x2c\x84\x62\x71\x3d\x4d\xa7\x2f\xf9\x63\xde\xcf\xb9\x1e\x21\xb2\xae\xea\x43\x75\x55\xbc\x4f\x01\xde\xa4\xf4\x7a\x2a\x3b\xba\x6a\x2a\xde\xe3\x65\x5f\x50\xdf\x18\xc6\x1a\x22\x04\x56\xe3\x76\x12\x75\x9c\xd2\x41\x8c\x0d\xa5\x1a\x1a\xb7\x93\x09\x79\x2c\x2a\x6d\x08\x8d\xd7\x96\x63\xb5\x19\x37\x0d\xd1\xb2\x16\x33\x42\x88\x12\x91\xe6\xe4\x97\x5c\xc5\x8f\x3a\x80\xbd\xb0\xa1\x8e\x22\x49\x61\x2c\xe4\x0c\xec\xd6\x58\x1f\xc9\x7b\x31\x71\xbe\x5e\xa9\x2c\x2c\x08\x9e\xb8\xf5\x16\xe4\xbd\xf3\x25\x3e\x11\x42\x95\x34\xda\x98\xd0\xad\xc4\x25\x01\x37\x27\x68\x86\xb3\x92\xd6\xd1\xfa\x42\x9d\x6a\xae\xda\x71\x2a\xce\x4a\x84\x4a\x4b\xe7\x9b\x01\xf7\x50\x03\x1d\x42\x4b\x61\x70\xf7\xfa\xf6\xee\x36\x2e\x30\x8a\x4e\x33\x27\x55\xee\xec\x55\x58\x06\xa6\x5a\xb2\x89\xdf\x93\x3c\x4c\xdb\xfb\xf5\x2b\x2e\x57\xbb\x53\xe8\x1b\x14\xee\x06\x05\xdd\x74\xf5\xf9\xc5\xb5\xde\x0a\x13\x7d\x8a\xb6\x33\x2f\x0a\xeb\x8a\x46\x4c\xc9\x7f\x07\x7a\xd0\x8c\xdb\xab\xd5\x56\xdf\x77\xfd\x39\xe9\xca\x8f\x5e\x4f\xa7\xe4\x49\x61\x51\x91\x4d\x7b\xfd\xd3\xd4\xea\xd4\xdd\x7f\xe8\x5a\x6d\xd7\x70\x02\x2e\xdb\x40\xaa\xdb\x03\xe9\x49\x30\x41\x6c\x69\xed\xab\x0c\xe0\x2e\x58\xc0\xb0\xbf\x5b\x8c\x1c\xad\x1a\x36\x4e\x93\x6d\x1b\x8f\x14\x60\x16\x7b\xae\x89\x6f\x82\x33\x94\x02\x7c\x71\xda\x5e\xe6\xc8\xaf\x93\xf8\xdc\x35\xb8\xda\x76\x12\x7e\x1a\x7a\xd4\x83\x4e\xd1\xa0\xf3\xd8\x16\x6d\xa7\xea\xba\x7d\xfd\x71\xaa\x44\xd9\xbd\xc6\x4f\xbb\xe9\x1f\xb3\xc7\x2c\xdb\x9d\x83\x7a\xe3\x7e\x0e\x62\x87\x77\xbf\xbd\xdd\x3a\x90\x34\x53\x74\xe9\xb3\xb6\x65\x87\x86\x7c\x4c\xc5\xec\x02\xce\x52\x11\x25\x38\x02\x99\x49\x11\x35\x3d\x29\x48\xd3\x06\x26\x8f\xb5\x7c\x6e\xb4\x9d\x96\x4f\x0c\x4b\x7d\xec\x22\x41\x75\x37\xfb\xe1\xd9\x87\xab\x94\xf1\x9b\x01\xa8\x16\xcb\x7e\x81\x5d\x09\xc6\xec\xdb\xba\xe3\x23\xcf\x32\xdb\x2d\x56\x67\xcd\x12\xca\x51\x88\xcb\x07\x8b\x30\x83\x60\x88\x34\x4b\x5c\x23\xb8\x58\x99\x8b\x54\xb4\xec\x97\x91\xef\x9a\x48\x0a\xd4\x35\x10\xeb\xf0\x73\x37\x0d\x76\x83\x94\x6f\xad\x4d\x34\x0f\x0e\x4d\x3b\x8c\xcb\x23\xc3\xe1\x99\x07\xa8\x9b\xd3\xc6\xa6\xdb\x97\x27\x8c\x4d\xab\x93\xc3\x06\x30\xa5\xcc\x48\x69\x7f\x5c\xd0\x75\x59\xf5\x4f\x94\xdc\x8e\x72\x5b\x25\xe9\xc0\x35\x3c\xe8\x33\xe6\xdf\xc6\x7f\xbc\xf1\xef\xd5\xed\xe9\xad\x7f\xed\xf2\x5c\xfb\x7f\xcc\xfe\x0c\x00\x00\xff\xff\xd0\xb5\x52\x0d\x58\x11\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 6540, + uncompressedSize: 7354, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5d\x6f\x1b\xb7\xd2\xbe\xd7\xaf\x18\x28\x17\xb6\x01\x69\x25\xbb\x4d\x9a\x08\xcd\x45\x60\xbb\x68\xf0\xd6\x8e\x5b\x3b\x6f\x0a\x14\xc5\x82\x22\x67\xb5\x84\xb8\xe4\x96\xc3\xd5\x07\x8a\xfe\xf7\x03\x72\xb9\xeb\x95\xb4\x72\xed\x93\x5c\x9c\xdc\x18\x59\x91\x33\xcf\x3c\xf3\xcd\x15\xb3\x92\xcd\x15\xc2\x90\xab\x8a\x1c\xda\x54\xb3\x02\x87\xf0\xf7\x00\xc0\x6d\x4b\x84\xf8\xef\x3d\x90\xb3\x52\x2f\x06\x00\x02\x89\x5b\x59\x3a\x69\x34\xbc\x87\xe1\x67\x2d\xff\xaa\x10\xe2\x75\x08\xd7\x07\xff\x0c\x06\xaf\x60\xce\x2c\x8e\x0b\x74\x4c\x0d\x06\x8f\x7a\x0a\xe6\x78\x3e\x37\x9b\x34\x77\xae\x4c\x51\x8b\xd2\x48\xed\x5e\xa2\xf1\x26\x4a\x80\x9f\x1f\x1e\xee\xc0\x22\x13\x63\xa3\xd5\x16\x1a\x59\x70\x8a\xc9\x22\x01\x2f\x7f\x36\x99\x34\xfa\x12\xdc\xb0\xa2\x54\x98\x70\x53\xcc\xde\x4e\xdf\x4e\xcf\x02\xcc\x47\x60\x86\x52\x9e\x33\xad\x51\xfd\x0b\x98\x8c\x55\xca\xc5\xcf\x43\x72\xfe\xf6\xf0\x10\xe5\x4f\x8a\x39\xce\x2c\x5c\x1a\xed\x98\xd4\x68\xe1\x17\xa9\xab\x0d\x44\x1d\xe0\x0c\x48\x4d\x8e\x29\x05\x99\x35\x05\x9c\xd6\x92\x46\x30\x47\xc7\x46\xc0\x54\x99\xb3\x11\xa0\x58\x60\x0f\xd0\x15\x5a\x92\x46\xbf\x04\x28\xaf\xac\x45\xed\x5e\x80\x34\x2a\xe9\x22\x3d\xcd\x8c\x85\x48\x24\x9c\x5c\x9c\xbf\x3b\x4f\x5e\x27\xd3\x13\x18\x03\x21\x06\xc6\x69\x36\x99\xac\xd7\xeb\x24\xab\x85\x8e\x95\x17\x95\x18\xbb\x98\x58\x54\xc8\x08\x69\x72\x16\xe3\xa3\x60\x3c\x97\x1a\x69\xf0\x0a\x1e\xd0\x5a\x96\x19\x5b\x9c\x10\x70\x5b\x09\x84\x61\xb0\x8a\xb6\xe4\xb0\x18\x82\x30\x48\xa0\x8d\x83\xd2\x9a\x12\xad\xda\x02\x55\x65\x69\xac\x03\x25\xc9\x11\x98\x0c\x0a\x56\x12\x90\x81\x35\x82\x30\xe0\x72\x49\x49\x97\x34\x6e\xb4\xb3\x46\xa9\x18\xe1\xd4\x47\x9d\x97\x75\x5a\xf3\x77\x76\x48\xd3\x27\x2b\xd0\xa2\x08\xa7\xbc\xc2\x47\x89\x21\xe8\x29\x86\xdd\x1f\xda\x08\x3c\xff\x73\xdf\x69\x1d\xfd\x05\xe3\xdf\x56\xbd\x14\xa8\x9d\xcc\xb6\x52\x2f\xe0\xe6\xc3\x25\x30\x21\x2c\x12\x3d\x42\x7a\x7d\x31\x7b\xfd\xfd\x6c\x3a\x9d\xb1\xf3\xd9\x3b\x3e\x63\xf8\x14\x3c\x61\x0a\x26\xf5\xb7\x45\xf8\xd3\xaf\x57\xb7\xbb\x04\x75\xd3\xf1\x00\xcd\xda\xd8\xe5\xb7\x73\x54\x2d\xed\xd0\x49\x17\x23\xf0\x7f\xbe\x3b\xa6\xfe\xdb\xf8\x29\x6a\x7f\xbe\x8f\xe6\x17\xb3\x8b\x6c\xf6\xf6\xcd\x08\xda\x4f\xfc\xbb\xd9\x9b\xf3\xd9\x0f\x3f\x1c\x43\xfa\xcd\x5c\x16\xc1\x1e\xb8\xeb\xa2\xeb\xae\x48\xdb\x93\x1e\xe4\x8a\xa7\xa4\x65\x59\xa2\xeb\x85\x55\xb0\xf2\xb4\x0b\xad\x07\xdb\x0d\x2b\xeb\xca\x18\xeb\x44\x74\xa0\x33\x8f\x39\xbf\x5f\xb1\x2e\x8d\xce\xe4\x02\x5a\xc5\x07\x55\xf0\xef\x7f\x76\x61\xc6\xba\x86\x36\xfd\x9f\x00\x3c\x02\x56\x96\x4a\xa2\x00\x5f\x67\x5d\x8e\x70\xf7\xfb\xf5\x78\x6e\x8c\x43\x01\x2d\x56\xf8\x74\xff\xef\x96\x29\x36\x47\x75\xd4\x92\xa3\x01\xe1\x6d\x30\x19\xd4\xb7\x03\x8a\x26\x7b\x8c\x40\x4a\x8e\xe9\x7d\xe5\x93\x3d\x93\x8b\xca\x32\x2f\xa9\x0b\x64\xf9\x96\x62\x7c\x76\x46\x8b\x3d\xad\x97\x8f\x95\xe2\xea\xf6\x3e\xf0\x06\xeb\x5c\xf2\x1c\x2c\x92\x51\xab\x9a\x45\xb6\x53\xf3\x3c\x1b\x9a\x63\x02\x5f\x02\x40\x02\xa6\x05\x2c\xab\x39\xd6\x48\x4e\x08\xd6\x52\x29\xe0\xa6\x28\x2a\x2d\x39\x73\x08\x6b\xe9\xf2\xd0\x19\xf6\x47\x85\x38\xbc\x74\x23\xfa\x6c\x78\xac\xb3\xee\xd0\x4c\x94\xa7\x4b\xdc\xfe\x17\xa9\x77\x7f\xff\x33\x94\xd5\x5c\x49\x0e\x5e\x40\xe0\xba\x22\xb4\x70\xc2\x8d\xc5\x93\xbd\x7c\x62\x44\xe8\x52\x21\x6d\x2f\x7f\x77\xcc\x1b\xe6\x19\x12\xd2\x22\x77\xc6\x6e\x61\x9d\xa3\x45\x58\xa0\x46\xcb\x7c\xf8\x04\x09\x04\x94\x9b\x4a\x09\x98\x23\x94\x8a\x71\x14\x70\xca\xeb\x98\x24\x20\xe4\x16\x1d\x3d\xd3\x72\x8d\xce\x87\x46\x5a\xb8\xaa\x1f\x53\xbe\x25\xc9\x99\x82\xdb\xfa\x20\xdc\x3c\x7c\x4e\x0e\x45\xeb\xaa\x98\xa3\xed\x17\x2d\xcb\x94\x55\xce\x08\x74\xc8\xbd\xd8\xb4\x40\x97\x1b\xd1\xab\xee\x26\xfc\x14\x48\x68\xaf\x84\x0c\xca\x0d\x39\xf8\x78\xb7\xfa\xbe\x29\xb9\x47\xcd\x3b\x18\x99\x32\x69\xc9\x8d\x33\x53\x69\xb1\xe7\x8e\xd2\x88\x94\x4b\xd1\xef\x8d\xcb\x8f\x57\xbf\xd5\x1a\x2d\xd3\x0b\x0c\x98\x88\xe4\x42\xc3\xff\x55\x73\xb4\x1a\x1d\x12\x94\x46\xbc\x00\xc9\xf9\x34\xb9\x48\xa6\xc9\x74\x72\xfe\x66\x0f\x09\xa1\x5d\x49\x8e\x47\xd1\xfc\xf8\xe3\xf5\xa7\xab\xc1\xb3\x20\x45\x51\x94\x0c\x1e\x72\x84\xf3\x40\x5b\x9d\x44\x73\xf4\x89\x88\x76\x15\x2b\x93\x4f\xb3\x94\x95\x32\x7c\xb2\xa3\xc0\xf3\xf9\xd4\xe5\x47\x2f\xf8\x90\x16\x9a\x92\x81\x07\x33\xe8\x98\xdd\x63\x72\x6d\xee\x77\x5d\x73\x5f\x81\x09\xf6\xec\x6e\x12\xcd\xc6\x12\xab\x0b\x55\x59\x26\x37\xbd\x1e\xf9\xb5\x42\x2b\xb1\xce\xb1\xd8\x2b\x9b\x62\x80\x50\xdf\x6b\x71\x33\x4d\xeb\xd0\x13\xe7\xdb\x16\x36\x5c\x45\x6c\x92\xda\x5a\xa1\x8c\x0f\xee\xba\x7e\x64\xc6\x24\x11\x7e\x42\x2b\x9e\xec\x9c\x39\x83\xe7\xfb\x79\xe7\xe2\x9e\xa7\x85\x59\x6b\x65\x98\x48\x4b\x6b\x9c\xe1\xe6\x45\x6b\x4a\x18\xcd\x7b\x66\xff\xbb\x28\x0b\xe4\xdd\xef\xd7\x4d\x71\xa8\x28\x44\x48\xa3\x30\xb0\xb4\xf4\x51\xa2\x42\x91\x95\x5a\x3a\x2b\x5a\x52\x42\x6d\x0e\xf2\x47\x6d\xd1\xfe\xab\x92\x16\xa9\x16\xca\x4d\x51\x4a\x85\xa2\x66\x9c\xdb\x6d\xe9\x4c\x33\xbe\x27\xf0\x59\x57\xe4\x9b\x5b\x06\x9c\xf1\x1c\x45\xda\xac\x1a\x92\xc0\xd9\x0a\x93\xfd\xc1\x62\xe7\x54\x1f\x05\x73\x63\xd4\x01\x01\x19\x53\x84\x87\xe6\x7f\xc9\xd1\xe5\x58\xb7\x5a\xbf\x58\x30\xe7\xe7\xb3\x7a\xeb\x68\xd8\xf0\x36\xf8\x16\x1c\x6d\xef\xac\x6c\xcd\x6a\x09\x93\x58\x5c\x03\xb8\x04\x6e\x8d\x43\x70\x39\xab\x0b\x10\x13\x85\xd4\x50\x54\xe4\x20\x67\x2b\x6c\x69\xc5\x9a\xd8\xc7\x6d\x0e\xa4\x76\xe6\x51\x68\x2d\x73\xdf\xfe\x08\x20\x15\x92\x96\x2f\x09\x80\x89\xc0\xd5\x84\x04\xeb\x89\x81\x2b\x49\x4b\x10\xe8\x73\xdf\xbb\xb2\xf6\xa1\x87\xd6\x18\x5b\x5a\x93\x49\x85\x6d\xf3\x68\xbe\xf7\xb2\x56\x67\x44\xa3\xae\x6f\xcf\x08\x03\x50\x1a\x16\xc3\xd4\xf8\xed\xee\xf9\x56\xf4\xa1\xbf\xbe\xfb\xed\xfa\xf2\xc3\xc3\xf5\xd5\x0c\xee\x4b\xe4\x32\xdb\x02\xd3\xf0\xe9\xfa\x06\x64\xc1\x16\x08\x32\x74\x05\x1f\xd3\x8c\x60\xce\x08\xdb\xe1\x2a\xda\x11\x46\x96\x88\x9b\x15\x72\x04\xab\x62\xcd\x2c\xa6\x96\xad\x47\xb0\x41\x7d\x06\xc6\x82\x42\xef\xbb\xb9\x62\x7a\xd9\xde\x6f\xc0\x05\x3d\x7b\x86\xd6\xf9\x92\x32\xbb\xa0\xde\x92\xf4\x41\x08\x59\x97\xb4\x36\xb5\xec\xa2\x2a\x50\xd7\xf9\x54\x5a\xb3\x92\x02\x81\xb9\x36\xfe\x7a\x9a\xe7\xc1\x84\xd1\x25\xeb\x8f\x3f\x7b\x11\x71\xa3\xc9\xa8\xfe\x39\xec\xa1\x93\xe8\x5d\x34\xcd\x70\x87\xc1\xec\x28\xa1\x8b\x2d\xe6\x06\x4c\x2a\xb2\x13\xca\x99\xc5\x89\xc1\x62\xb2\xb0\xd5\x3c\xe1\xd9\xe2\xc5\xd0\x87\x51\xc7\x7b\xe7\xb6\xd3\xe1\x08\xba\xff\xbf\x9f\x0e\xf7\x2c\x43\xed\xff\xa6\x16\x7d\x49\x91\x7a\xf1\x64\x55\xd8\x31\xf8\x3a\xdc\x84\x8a\x7c\xa0\x18\x0b\x4c\x33\xb5\x75\x92\x13\xb4\xc2\x42\xf0\x94\xe4\x2c\xb2\x82\xe0\xf4\x92\x29\xc9\xcd\xd9\xe1\x20\x5c\x57\x98\x3e\x5c\x6c\xb1\xb0\xb8\x08\x51\xd6\xcb\x7a\x04\xe1\xa9\xed\x74\xe3\x0f\x8f\xb7\xe0\x17\xb6\x45\x0b\xa7\xa2\x53\x70\x7d\x6d\xec\x99\xd4\x7a\x8b\x9f\x3f\xbb\xd7\x4b\x24\x05\x68\x84\x2a\x4b\xfd\x84\x84\x22\xf5\x4d\x5d\xa1\xeb\x85\x78\x55\x9f\xaf\xfb\x25\xaa\x0c\xea\x3b\x10\xef\xb4\xbb\x49\xe8\x9a\x51\xf9\x11\x70\xa1\x9d\x5f\xa2\x75\x32\x0b\x53\x39\xed\x94\x07\xb4\x8e\xd2\x15\x53\x52\x48\xb7\x4d\x4b\xb4\xd2\x88\x34\x37\x95\xed\xcf\xa2\xff\x8f\x27\xfd\xce\xd2\x54\x24\xde\x91\xed\x63\xb2\xbe\x7d\x6c\xf0\xdc\xe7\xea\xed\x0f\x6f\xa6\x7b\x79\xb3\x33\xec\xa4\xb8\x71\x96\xa5\x99\x62\x47\x12\xfb\xda\xff\x0e\xe1\x77\x28\x7d\x0d\x0f\xe5\xc7\x93\x36\xee\x90\x36\x6e\x05\x7e\x6d\x5a\xa3\x0e\x2d\x35\xf5\x23\xa9\xb3\x2c\xcb\x24\x7f\x2a\xca\xa4\x1e\x37\x4f\xb5\xa5\x9f\x97\xeb\x1b\x10\xa5\x48\xa3\x7b\xf0\x3c\xd1\x51\x77\x7b\xd3\x42\x1b\x8b\xe9\xe6\xf5\xf4\x5d\xca\x75\xca\x73\xe4\xcb\x5e\x2c\x1f\xc3\x41\xb8\xbc\x85\x70\x26\xb8\xc9\xdf\xda\xf1\xdd\x57\x00\xe1\x46\x6b\x67\x19\x5f\xa6\x05\xdb\xf8\x28\x4a\xfd\x24\xd7\x0b\x65\x3c\x6e\x0f\x8f\x0b\xb6\x19\x97\x68\xc7\xfe\x30\xac\x98\xaa\xb0\x9d\x76\xc7\xa5\x35\x9b\x6d\x02\x37\x6c\x23\x8b\xaa\x88\xd1\xe3\xc3\xee\xf6\xc3\x83\xaf\x88\xba\x5e\x51\x62\x6e\x32\xbe\x84\x12\x2d\x5c\xde\x7d\x0e\x43\x24\x9c\x4e\xc3\x3b\x40\x68\x22\x3e\x48\x95\x2c\xa4\x03\x46\x63\x59\x2f\xae\x35\x75\x4d\x79\x6d\xf0\x48\xdd\x51\x1e\x62\xea\xec\x99\x2b\x54\x33\x26\x38\x93\x52\xe1\x33\x93\x5c\x67\x64\xd8\x77\x47\xec\xe7\xc7\x1e\x82\xbd\x49\x3e\xf1\xa3\x20\xf0\x82\xbe\xc2\x3b\xda\x08\x4c\x29\xb4\x6a\xc9\xd3\xa7\x1f\x2a\x3a\x8f\x15\xc7\x5f\x2b\xbc\x40\x68\x04\x36\x6f\x17\x05\x2b\x8f\x3e\x57\x74\x1e\xd0\x64\x89\x29\x6b\x7b\x71\xe0\xa8\x17\x4c\x7f\xff\xf8\x22\x4b\xf4\x0e\xdc\xc2\xa3\x8c\x40\x0f\x01\x73\x2e\x8c\xaa\x23\x3f\xdb\x12\xba\xa6\x68\x1f\xef\x1c\xff\x09\x00\x00\xff\xff\x1b\x82\x74\x27\x8c\x19\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x5b\x6f\x1b\x37\x16\x7e\xf7\xaf\x38\x70\x82\xd8\x06\x34\x23\xd9\x6d\xd2\x54\x6d\x1e\xb2\xb6\x8b\x14\x5b\x27\x6e\xe3\x6c\x0b\x14\xc5\x80\x43\x9e\xd1\x10\xe6\x90\x2c\xc9\xd1\x05\x45\xff\xfb\x82\x97\x91\x46\xd2\xc8\xb5\x37\x79\xd8\xbc\xd8\x96\xc8\x73\xbe\xf3\x9d\x3b\x33\x27\x86\x93\x52\x20\x1c\x53\xd1\x5a\x87\xa6\x90\xa4\xc1\x63\xf8\xeb\x08\xc0\xad\x34\x42\xfa\xf7\x06\xac\x33\x5c\xce\x8e\x00\x18\x5a\x6a\xb8\x76\x5c\x49\x78\x03\xc7\x9f\x24\xff\xb3\x45\x48\xd7\x21\x5c\x3f\xfa\xfb\xe8\xe8\x19\x94\xc4\x60\xd6\xa0\x23\xe2\xe8\x68\xa3\xa7\x21\x8e\xd6\xa5\x5a\x16\xb5\x73\xba\x40\xc9\xb4\xe2\xd2\x3d\x45\xe3\x4d\x92\x00\xef\xee\xee\x6e\xc1\x20\x61\x99\x92\x62\x05\x9d\x2c\x38\xc5\x7c\x96\x83\x97\x3f\x1d\x8f\x3b\x7d\x39\x2e\x49\xa3\x05\xe6\x54\x35\xd3\xd7\x93\xd7\x93\xb3\x00\x73\x03\x4c\xd9\x82\xd6\x44\x4a\x14\xff\x00\xa6\x22\xad\x70\xe9\xe3\x63\xeb\xfc\xed\xe3\x7d\x94\x3f\x08\xe2\x28\x31\x70\xa9\xa4\x23\x5c\xa2\x81\x9f\xb8\x6c\x97\x90\x74\x80\x53\xc0\xa5\x75\x44\x08\xa8\x8c\x6a\xe0\x34\x4a\x1a\x41\x89\x8e\x8c\x80\x08\x5d\x93\x11\x20\x9b\xe1\x00\xd0\x39\x1a\xcb\x95\x7c\x0a\x50\xda\x1a\x83\xd2\x3d\x01\x69\x52\xd2\x47\x7a\x5a\x29\x03\x89\x48\x38\xb9\x38\xff\xf6\x3c\x7f\x99\x4f\x4e\x20\x03\x8b\x18\x18\xb7\xd3\xf1\x78\xb1\x58\xe4\x55\x14\x9a\x09\x2f\x2a\x57\x66\x36\x36\x28\x90\x58\xb4\xe3\xb3\x14\x1f\x0d\xa1\x35\x97\x68\x8f\x9e\xc1\x1d\x1a\x43\x2a\x65\x9a\x13\x0b\xd4\xb4\x0c\xe1\x38\x58\x65\x57\xd6\x61\x73\x0c\x4c\xa1\x05\xa9\x1c\x68\xa3\x34\x1a\xb1\x02\xdb\x6a\xad\x8c\x03\xc1\xad\xb3\xa0\x2a\x68\x88\xb6\x60\x15\x2c\x10\x98\x02\x57\x73\x9b\xf7\x49\xa3\x4a\x3a\xa3\x84\x48\x11\x6e\x87\xa8\xf3\xb2\x4e\x23\x7f\x67\xfb\x34\x7d\x30\x0c\x0d\xb2\x70\xca\x2b\xdc\x48\x0c\x41\x6f\x53\xd8\xfd\x2e\x15\xc3\xf3\x3f\x76\x9d\xd6\xd3\xdf\x10\xfa\x65\xd5\x73\x86\xd2\xf1\x6a\xc5\xe5\x0c\x6e\xde\x5e\x02\x61\xcc\xa0\xb5\x1b\x48\x2f\x2f\xa6\x2f\xbf\x9e\x4e\x26\x53\x72\x3e\xfd\x96\x4e\x09\x3e\x04\x8f\xa9\x86\x70\xf9\x65\x11\xfe\xf0\xf3\xd5\xfb\x6d\x82\xfa\xe9\xb8\x87\x66\xa1\xcc\xfd\x97\x73\x54\x94\xb6\xef\xa4\x8b\x11\xf8\x1f\x5f\x1d\x52\xff\x65\xfc\x94\xb4\x3f\xde\x47\xe5\xc5\xf4\xa2\x9a\xbe\x7e\x35\x82\xf5\x47\xf4\xab\xe9\xab\xf3\xe9\x37\xdf\x1c\x42\xfa\xc5\x5c\x96\xc0\xee\xb9\xeb\xa2\xef\xae\x44\xdb\x83\x1e\xa4\x82\x16\x56\x72\xad\xd1\x0d\xc2\x6a\x88\x3e\xed\x43\x1b\xc0\x76\x43\x74\xac\x8c\xa9\x4e\x24\x07\x3a\xb5\xc9\xf9\xdd\x8a\x75\xa9\x64\xc5\x67\xb0\x56\xbc\x57\x05\xff\xfa\x7b\x1b\x66\xaa\x6b\x68\x8a\xff\x0b\xc0\x23\x20\x5a\x0b\x8e\x0c\x7c\x9d\x75\x35\xc2\xed\x6f\xd7\x59\xa9\x94\x43\x06\x6b\xac\xf0\xe1\xe3\x3f\x5b\x26\x48\x89\xe2\xa0\x25\x07\x03\xc2\xdb\xa0\x2a\x88\xb7\x03\x8a\x2e\x7b\x14\x43\x9b\x1f\xd2\xfb\xcc\x27\x7b\xc5\x67\xad\x21\x5e\x52\x1f\xc8\xfd\x6b\x9b\xe2\xb3\x37\x5a\xec\x68\xbd\xdc\x54\x8a\xab\xf7\x1f\x03\x6f\xb0\xa8\x39\xad\xc1\xa0\x55\x62\x1e\x59\x24\x5b\x35\xcf\xb3\x21\x29\xe6\xf0\x6b\x00\x68\x81\x48\x06\xf7\x6d\x89\x11\xc9\x89\x85\x05\x17\x02\xa8\x6a\x9a\x56\x72\x4a\x1c\xc2\x82\xbb\x3a\x74\x86\xdd\x51\x21\x0d\x2f\xfd\x88\x3e\x3b\x3e\xd4\x59\xb7\x68\xb6\xb6\x2e\xee\x71\xf5\x3f\xa4\xde\xc7\x8f\xef\x40\xb7\xa5\xe0\x14\xbc\x80\xc0\x75\x6b\xd1\xc0\x09\x55\x06\x4f\x76\xf2\x89\x58\x8b\xae\x60\xdc\x0c\xf2\x77\x4b\xbc\x61\x9e\x21\xc6\x0d\x52\xa7\xcc\x0a\x16\x35\x1a\x84\x19\x4a\x34\xc4\x87\x4f\x90\x60\xc1\xd6\xaa\x15\x0c\x4a\x04\x2d\x08\x45\x06\xa7\x34\xc6\xa4\x05\x8b\xd4\xa0\xb3\x8f\xb4\x5c\xa2\xf3\xa1\x51\x34\xae\x1d\xc6\x54\xaf\x2c\xa7\x44\xc0\xfb\x78\x10\x6e\xee\x3e\xe5\xfb\xa2\x65\xdb\x94\x68\x86\x45\x73\x5d\x90\xd6\x29\x86\x0e\xa9\x17\x5b\x34\xe8\x6a\xc5\x06\xd5\xdd\x84\xaf\x02\x09\xeb\x2b\x21\x83\x6a\x65\x1d\xfc\x78\x3b\xff\xba\x2b\xb9\x07\xcd\xdb\x1b\x99\x2a\x6e\xac\xcb\x2a\xd5\x4a\xb6\xe3\x0e\xad\x58\x41\x39\x1b\xf6\xc6\xe5\x8f\x57\xbf\x44\x8d\x86\xc8\x19\x06\x4c\xd6\xf2\x99\x84\x7f\xb7\x25\x1a\x89\x0e\x2d\x68\xc5\x9e\x80\xe4\x7c\x92\x5f\xe4\x93\x7c\x32\x3e\x7f\xb5\x83\xc4\xa2\x99\x73\x8a\x07\xd1\x7c\xff\xfd\xf5\x87\xab\xa3\x47\x41\x4a\xa2\x6c\x7e\x74\x57\x23\x9c\x07\xda\x62\x12\x95\xe8\x13\x11\xcd\x3c\x55\x26\x9f\x66\x05\xd1\x3c\x7c\x64\x46\x81\xe7\xf3\x89\xab\x0f\x5e\xf0\x21\xcd\xa4\xcd\x8f\x3c\x98\xa3\x9e\xd9\x03\x26\x47\x73\xbf\xea\x9b\xfb\x0c\x54\xb0\x67\x7b\x93\xe8\x36\x96\x54\x5d\x6c\x5b\x55\x7c\x39\xe8\x91\x9f\x5b\x34\x1c\x63\x8e\xa5\x5e\xd9\x15\x03\x84\x78\x6f\x8d\x9b\x48\xbb\x08\x3d\xb1\x5c\xad\x61\xc3\x55\xc2\xc6\xed\xba\x56\x08\xe5\x83\x3b\xd6\x8f\x4a\xa9\x3c\xc1\xcf\xed\x9c\xe6\x5b\x67\xce\xe0\xf1\x7e\xde\xba\xb8\xe3\x69\xa6\x16\x52\x28\xc2\x0a\x6d\x94\x53\x54\x3d\x69\x4d\x09\xa3\xf9\xc0\xec\x7f\x9b\x64\x01\xbf\xfd\xed\xba\x2b\x0e\xad\x0d\x11\xd2\x29\x0c\x2c\xdd\xfb\x28\x11\xa1\xc8\x72\xc9\x9d\x61\x6b\x52\x42\x6d\x0e\xf2\x47\xeb\xa2\xfd\x67\xcb\x0d\xda\x28\x94\xaa\x46\x73\x81\x2c\x32\x4e\xcd\x4a\x3b\xd5\x8d\xef\x39\x7c\x92\xad\xf5\xcd\xad\x02\x4a\x68\x8d\xac\xe8\x56\x0d\x6e\xc1\x99\x16\xf3\xdd\xc1\x62\xeb\xd4\x10\x05\xa5\x52\x62\x8f\x80\x8a\x08\x8b\xfb\xe6\xff\x5a\xa3\xab\x31\xb6\x5a\xbf\x58\x10\xe7\xe7\xb3\xb8\x75\x74\x6c\x78\x1b\x7c\x0b\x4e\xb6\xf7\x56\xb6\x6e\xb5\x84\x71\x2a\xae\x01\x5c\x0e\xef\x95\x43\x70\x35\x89\x05\x88\xb0\x86\x4b\x68\x5a\xeb\xa0\x26\x73\x5c\xd3\x8a\x91\xd8\xcd\x36\x07\x5c\x3a\xb5\x11\x1a\x65\xee\xda\x9f\x00\x14\x8c\xdb\xfb\xa7\x04\xc0\x98\xe1\x7c\x6c\x19\x19\x88\x81\x2b\x6e\xef\x81\xa1\xcf\x7d\xef\xca\xe8\x43\x0f\xad\x33\x56\x1b\x55\x71\x81\xeb\xe6\xd1\x7d\x3e\xc8\x5a\xcc\x88\x4e\xdd\xd0\x9e\x11\x06\xa0\x22\x2c\x86\x85\xf2\xdb\xdd\xe3\xad\x18\x42\x7f\x7d\xfb\xcb\xf5\xe5\xdb\xbb\xeb\xab\x29\x7c\xd4\x48\x79\xb5\x02\x22\xe1\xc3\xf5\x0d\xf0\x86\xcc\x10\x78\xe8\x0a\x3e\xa6\x89\x85\x92\x58\x5c\x0f\x57\xc9\x8e\x30\xb2\x24\xdc\xa4\xe1\x23\x98\x37\x0b\x62\xb0\x30\x64\x31\x82\x25\xca\x33\x50\x06\x04\x7a\xdf\x95\x82\xc8\xfb\xf5\xfd\x0e\x5c\xd0\xb3\x63\x68\xcc\x97\x82\x98\x99\x1d\x2c\x49\x6f\x19\xe3\xb1\xa4\xad\x53\xcb\xcc\xda\x06\x65\xcc\x27\x6d\xd4\x9c\x33\x04\xe2\xd6\xf1\x37\xd0\x3c\xf7\x26\x8c\x3e\x59\xbf\xff\x31\x88\x88\x2a\x69\x95\x18\x9e\xc3\xee\x7a\x89\xde\x47\xd3\x0d\x77\x18\xcc\x4e\x12\xfa\xd8\x52\x6e\xc0\xb8\xb5\x66\x6c\x6b\x62\x70\xac\xb0\x19\xcf\x4c\x5b\xe6\xb4\x9a\x3d\x19\xfa\x71\xd2\xf1\xc6\xb9\xd5\xe4\x78\x04\xfd\xbf\x3f\x4e\x8e\x77\x2c\x43\xe9\x7f\x16\x06\x7d\x49\xe1\x72\xf6\x60\x55\xd8\x32\xf8\x3a\xdc\x84\xd6\xfa\x40\x51\x06\x88\x24\x62\xe5\x38\xb5\xb0\x16\x16\x82\x47\x5b\x67\x90\x34\x16\x4e\x2f\x89\xe0\x54\x9d\xed\x0f\xc2\xb1\xc2\x0c\xe1\x22\xb3\x99\xc1\x59\x88\xb2\x41\xd6\x13\x08\x4f\x6d\xaf\x1b\xbf\xdd\xdc\x82\x9f\xc8\x0a\x0d\x9c\xb2\x5e\xc1\xf5\xb5\x71\x60\x52\x1b\x2c\x7e\xfe\xec\x4e\x2f\xe1\x36\x40\xb3\x28\xaa\xc2\x4f\x48\xc8\x0a\xdf\xd4\x05\xba\x41\x88\x57\xf1\x7c\xec\x97\x28\x2a\x88\x77\x20\xdd\x59\xef\x26\xa1\x6b\x26\xe5\x07\xc0\x85\x76\x7e\x89\xc6\xf1\x2a\x4c\xe5\x76\xab\x3c\xa0\x71\xb6\x98\x13\xc1\x19\x77\xab\x42\xa3\xe1\x8a\x15\xb5\x6a\xcd\x70\x16\xfd\x27\x9d\xf4\x3b\x4b\x57\x91\x68\x4f\xb6\x8f\xc9\x78\xfb\xd0\xe0\xb9\xcb\xd5\xeb\x6f\x5e\x4d\x76\xf2\x66\x6b\xd8\x29\x70\xe9\x0c\x29\x2a\x41\x0e\x24\xf6\xb5\xff\x1e\xc2\xf7\xa0\x7d\x0d\x0f\xe5\xc7\x93\x96\xf5\x48\xcb\xd6\x02\x3f\x37\xad\x51\x86\x96\x5a\xf8\x91\xd4\x19\x52\x55\x9c\x3e\x14\x65\x5c\x66\xdd\x53\xad\xf6\xf3\x72\xbc\x01\x49\x0a\x57\x72\x00\xcf\x03\x1d\x75\xbb\x37\xcd\xa4\x32\x58\x2c\x5f\x4e\xbe\x2d\xa8\x2c\x68\x8d\xf4\x7e\x10\xcb\x8f\xe1\x20\x5c\xbe\x87\x70\x26\xb8\xc9\xdf\xda\xf2\xdd\x67\x00\xa1\x4a\x4a\x67\x08\xbd\x2f\x1a\xb2\xf4\x51\x54\xf8\x49\x6e\x10\x4a\x96\xad\x0f\x67\x0d\x59\x66\x1a\x4d\xe6\x0f\xc3\x9c\x88\x16\xd7\xd3\x6e\xa6\x8d\x5a\xae\x72\xb8\x21\x4b\xde\xb4\x4d\x8a\x1e\x1f\x76\xef\xdf\xde\xf9\x8a\x28\xe3\x8a\x92\x72\x93\xd0\x7b\xd0\x68\xe0\xf2\xf6\x53\x18\x22\xe1\x74\x12\xde\x01\x42\x13\xf1\x41\x2a\x78\xc3\x1d\x10\x9b\xf1\xb8\xb8\x46\xea\xba\xf2\xda\xe1\xe1\xb2\xa7\x3c\xc4\xd4\xd9\x23\x57\xa8\x6e\x4c\x70\xaa\xb0\x8d\xcf\x4c\xeb\x7a\x23\xc3\xae\x3b\x52\x3f\x3f\xf4\x10\xec\x4d\xf2\x89\x9f\x04\x81\x17\xf4\x19\xde\x91\x8a\x61\x61\x43\xab\xe6\xb4\x78\xf8\xa1\xa2\xf7\x58\x71\xf8\xb5\xc2\x0b\x84\x4e\x60\xf7\x76\xd1\x10\x7d\xf0\xb9\xa2\xf7\x80\xc6\x35\x16\x64\xdd\x8b\x03\x47\x83\x60\x86\xfb\xc7\xaf\x5c\xa3\x77\xe0\x0a\x36\x32\x02\x3d\x16\x88\x73\x61\x54\x1d\xf9\xd9\xd6\xa2\xeb\x8a\xf6\xa3\x3a\x87\x5e\x62\x41\x55\xd3\x10\xc9\x06\xd1\x1c\x9a\x8f\x90\xd6\x0a\x4e\x56\xaa\x8d\xf3\xe6\xa9\xc1\xb3\x30\x49\xc4\x77\xfc\x1a\x23\x55\xe5\x2a\x34\x6d\xdf\xdc\xe6\x9c\xc4\x29\x3d\x0c\xb4\xe9\xbf\x4c\x6e\xde\xde\x5d\xbe\xfb\xd7\x87\xdf\xc6\x61\xec\xe0\x7a\x89\x27\xdf\x01\x2e\xb9\x83\xf3\x81\x01\xcc\xd6\x98\xde\x59\x3c\x5a\x6f\x26\x2e\x91\xb6\x2e\x26\x8f\x97\xbd\x05\x83\xcb\xd9\x28\xae\x02\x84\x52\xb4\xb6\x8b\xae\xce\x78\x0b\xcf\x1b\x42\xe1\xd4\x7f\xd6\x7b\x28\x3d\x1b\xc1\xf3\xf0\x2e\x74\xba\x36\xc3\xff\x79\x36\x0a\xe9\xf3\x3c\x6e\x75\xf1\xcb\xf4\x7b\xfa\xda\x8f\x75\x23\x38\x29\x1b\xfa\xa6\x6c\x68\x96\x4e\x7e\x07\x5c\x37\xdc\x29\x25\x20\x7b\x07\xcf\xcb\x86\x82\x56\x8b\x90\xd1\xd5\xc0\x77\xb4\xf6\xeb\xb2\x0d\xb4\x31\x9c\x83\x5e\xe2\x61\x09\x72\xf7\xf1\xa6\x4b\x46\xed\x87\x4a\xf4\x32\x0a\xda\x3c\xcd\xb1\x9b\xc8\x79\x24\xf7\xc9\xdf\x6b\xda\x91\xc5\x97\x10\x52\xb9\xee\xf5\xac\x9b\x7c\x2b\x2e\xb9\xad\x91\x05\x26\x4b\xac\x7c\x21\x8a\x30\x3b\xf6\x98\xa2\xf7\x68\xc0\xb4\x12\xb2\x4c\x1b\x3e\xe7\x02\x67\xc8\x20\xcb\x24\xba\x28\x37\xcb\x4c\x03\x0c\x4b\x4e\x24\xd8\x1a\x32\x0a\x27\x44\x3b\x68\x35\x23\x0e\xe1\xc5\x0b\xf0\x7f\x75\x8b\x43\xb6\xda\x90\xf7\xe2\xc5\xe6\xf7\x5d\x9a\x7d\x26\xa5\xd5\xdf\xbe\xd1\x7e\x4b\xb2\x0e\xa5\x0b\xfc\xfe\x37\x00\x00\xff\xff\xb9\xbb\x61\x34\xba\x1c\x00\x00"), }, "/terraform-modules/bare-metal/flatcar-linux/kubernetes/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -6170,16 +6170,16 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/bare-metal/flatcar-linux/kubernetes/worker.tf": &vfsgen۰CompressedFileInfo{ name: "worker.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 901, + uncompressedSize: 1253, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x8a\xdb\x30\x10\x86\xef\x7a\x8a\xc1\x74\x21\x86\xd4\xe9\x61\x29\xc5\x6c\x8e\xed\xb5\x0f\x10\x82\x50\xe4\x71\x22\x2c\x6b\x8c\x66\xbc\xdd\x25\xe4\xdd\x8b\x2c\x1b\xbc\x9b\xd0\x1a\x9f\x66\xbe\x5f\xfa\x34\xd3\x53\x33\x7a\x84\xe2\x0f\xc5\x0e\x63\x01\x57\x05\xc0\x34\x46\x8b\xf0\xf9\xdb\x43\x51\x55\xbb\xfc\xcf\xb8\x02\xb0\x34\x06\xb9\x63\x61\x0f\x1e\xc3\x59\x2e\x9b\x57\x13\xab\x4c\xeb\x60\x7a\xe4\x72\xc9\x68\x17\x1a\x7c\xfb\x98\x99\x1a\xd5\xd4\x48\x98\x1f\x59\x30\xea\x26\xb0\x66\x8c\xaf\xce\xa2\x76\x03\xec\x21\x4b\x57\x27\x22\xe9\xc6\x13\x56\x8f\xc1\xf4\x12\xbe\xe8\x0e\xdf\xf9\x4e\x2e\x59\x2d\xcd\xf5\x4d\xd4\x1b\x17\x34\x8f\x6d\xeb\xde\x16\xee\x61\x33\x85\x8c\xb6\x18\xef\xde\xfe\x40\x2f\x83\x0a\xc0\x0c\x2e\xf9\x61\xfc\x1c\x69\x29\xf6\x46\x36\xc5\x13\x57\x4f\x5c\x6c\x3f\xdc\x9b\xc6\x96\x2b\xdd\x0f\x5e\x2c\x52\x31\x8d\x32\x5d\xe0\x51\xb4\x37\x27\xf4\xbc\x96\xc0\x78\xc6\x8d\x27\xea\xc6\x61\x5a\x42\xa0\x06\x35\x0f\x68\x5d\xeb\xec\xcc\xe7\x63\xd7\xeb\x39\xac\x56\x70\xdc\xc2\xf5\x56\x66\x26\xf3\xe5\x6a\x56\x09\xbf\x9b\xe9\xba\x99\xe6\x8f\xa2\x59\x4c\x68\x4c\x6c\xf4\x85\x58\x72\x68\x0f\xad\xf1\x8c\xd3\x61\x56\x73\x70\xc3\x80\xc2\xd3\xfe\x83\x35\xb2\xb6\x5e\x03\xff\xb5\x3d\x1c\xcb\x2d\x1c\x54\xd2\x79\x79\xf9\xf9\xfb\x97\x62\xa1\x68\xce\x58\x2b\x80\xd6\x79\xe4\x7a\xea\x7d\x85\xc1\xc8\xa5\x86\x1d\x8a\xdd\x2d\x56\x2a\x3f\x63\xc2\xde\x59\xb0\xaf\x21\x12\xc9\x5c\xee\xa9\xc1\x1a\xbe\x7d\x7f\x7e\x9e\x0b\x96\x82\x60\x90\xf9\xc4\xf4\xb9\xe0\x5d\xc0\x1a\xbe\x5c\xff\x69\x79\x53\x49\x2c\x05\xb6\x0a\xe0\x58\xaa\x9b\x52\x7f\x03\x00\x00\xff\xff\xf8\x34\x21\xf3\x85\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x41\x6b\xdc\x3c\x10\xbd\xeb\x57\x0c\xcb\x17\xc8\xc2\xc6\xfe\x0e\xa1\x14\x93\x3d\x36\xb4\xa7\x40\xd3\x5b\x08\x42\x2b\x8d\x6d\x61\x59\x32\x9a\x71\x92\x25\xcd\x7f\x2f\xb2\xec\xc6\xc9\x86\xf6\x52\xe3\x93\xe6\xbd\x79\x6f\xe6\x4d\x1f\xcc\xe8\x10\x36\x8f\x21\x76\x18\x37\xf0\x2c\x00\x28\x8c\x51\x23\xbc\xff\xf6\xb0\x29\x8a\x32\xff\x33\x5c\x00\xe8\x30\x7a\x3e\xc1\xc2\x1e\x1c\xfa\x86\xdb\xf3\x07\x15\x8b\x8c\x96\x5e\xf5\x48\xdb\x85\x23\xad\x37\xf8\xf4\x96\x33\x15\x8a\xa9\x90\x60\x6e\x24\xc6\x28\x8d\x27\x49\x18\x1f\xac\x46\x69\x07\xd8\x43\x36\x5d\x1c\x42\xe0\x6e\x3c\x60\xf1\x31\x30\x4d\x42\xad\xec\xf0\x48\x27\xe6\x92\xab\xa5\xb8\x56\x0a\xbd\xb2\x5e\xd2\x58\xd7\xf6\x69\xc1\x7d\x58\x4c\x24\x25\x35\xc6\x93\xd9\x3f\xb0\x97\x81\x02\x40\x0d\x36\xf9\xc3\xf8\x9e\x52\x87\xd8\x2b\x3e\xdf\x9c\x51\x71\x46\x9b\xdd\x1b\xdd\xb4\xb6\xfc\xd2\x7d\xa6\xc5\x45\x7a\x4c\xab\x4c\x02\x0e\x59\x3a\x75\x40\x47\x6b\x13\x18\x1b\x3c\x77\x21\x74\xe3\x30\x85\xe0\x83\x41\x49\x03\x6a\x5b\x5b\x3d\xe3\x73\xdb\x75\x3c\x77\xab\x08\xee\x77\xf0\xfc\xb2\xcd\x98\x8c\xdf\xae\x76\x95\xe0\x27\x3b\x5d\x17\xd3\xfe\x91\x25\xb1\xf2\x46\x45\x23\xdb\x40\x9c\x49\x7b\xa8\x95\x23\x9c\x9a\x69\x49\xde\x0e\x03\x32\x4d\xf9\x7b\xad\x78\xed\x7a\x0d\xf8\xab\xdb\xbb\xfb\xed\x0e\xee\x44\xb2\x73\x75\xf5\xe5\xe6\x5a\xd4\xd6\x21\x1d\x89\xb1\xa7\x4a\x00\x5c\x40\x62\x55\x10\x43\xe0\x09\xd5\x27\x7a\x25\xf2\x04\x06\xd3\xe1\x54\x50\x1a\x7c\x28\x8d\xa5\xae\x3c\x1c\x2f\xa6\xb9\xcb\xef\x37\x37\x3f\x66\x54\x4e\xaa\x02\x7c\xe2\xcb\xf9\xe9\xd1\x0e\x28\x5f\xa5\x2a\xe0\x38\xe2\x5c\x9b\xf8\x15\x4c\x0d\x88\x43\x54\x0d\x26\xbd\x09\x9d\x85\x2f\x60\x50\xdc\x56\x50\xda\xc6\x5b\xb6\xc1\xcb\xa8\xfc\x22\xb6\x6a\xfa\xdb\x74\xb2\x6d\xb0\x82\xff\x3f\x5d\x2e\x0e\x74\xf0\x8c\x9e\x69\x19\x05\xc0\x7a\x67\x3d\x56\xf0\x53\xbc\x46\x74\xed\x54\x33\xb5\x04\xeb\x8d\xd5\x8a\xad\x6f\x80\x5b\xc5\xf0\x6d\x96\x86\xa8\x7c\xb1\x62\xdc\xb6\x61\x74\x06\x0e\x08\x26\x5d\x19\x1a\x38\x1c\x81\x5b\x84\xdb\xdb\xaf\x40\x8c\x43\xa6\xeb\x16\x75\x47\x60\xb9\x78\x3b\x11\xb2\x2e\x97\xd4\xff\xd9\x44\xff\x3d\xff\xf1\x0a\x5e\x44\x0a\x3e\x11\x76\x02\xe0\x7e\x2b\x5e\x84\xf8\x15\x00\x00\xff\xff\x93\xec\x9f\x3c\xe5\x04\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: 1012, + uncompressedSize: 1219, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x5d\xaa\xe3\x30\x0c\x85\xdf\xbd\x0a\x91\xa7\x29\x74\x32\x2b\xe8\x4a\x4a\x31\x1e\x5b\x4d\x4c\x1c\x29\x58\x4e\xdb\x61\xb8\x7b\xbf\xe4\x8f\x24\x8d\x7b\x4b\x5f\xc2\xf9\x0e\xc7\x3e\x92\x5b\x76\x7d\x40\x28\x9e\x1c\x1b\x8c\xba\x8b\x7c\xf7\x01\x0b\xf8\xaf\x00\x84\xfb\x68\x11\x8e\xbf\x0b\x14\x65\xf9\x67\xfa\xb7\x26\xd9\xfa\x2f\xbf\x7e\xdf\x83\x49\xd6\xc4\x42\x01\x58\xee\x29\x65\x7c\x70\x81\x80\x54\xa5\xfa\xd7\xc3\xc4\x72\x8e\x24\xd3\xa2\x9c\x14\x00\xb1\xc3\xf1\xeb\xe8\x7a\xc7\xaf\x63\x42\xe9\xc9\xe1\xeb\xb6\x58\x5b\x63\x33\x81\x1b\x6b\x6b\xec\xc1\xe9\xf8\x49\x81\x8d\x1b\x6e\x9e\xd8\x72\xd8\x3b\x0f\xb2\x02\x60\xd1\xb6\x36\x44\x18\xb2\x61\xab\x3c\xb1\x0f\x8c\xe2\x99\x3e\xb1\xb3\xac\x00\xea\x94\x3a\x8d\xe4\x3a\xf6\xfb\xf6\x26\x76\x29\x5a\xef\x38\x05\xd0\x60\x24\x0c\xda\xc4\x4a\x72\x19\x1b\x79\x85\x2d\x93\x70\xc0\x4f\xf0\x2c\x2b\x00\x4f\x92\x4c\x08\x18\xb5\x0d\x56\x0b\xf9\xae\xc3\x24\xd3\x28\x99\x9b\xbe\x1b\x47\x99\xa7\xce\x3f\xcf\xed\x0c\xd7\xdb\x69\x8d\xd0\xce\x4b\x93\x39\xff\x56\xde\xd0\x89\xb5\xb4\x43\xa6\xa4\xc9\xb9\xa7\xdf\xe5\x71\x2b\x29\x19\x4f\x18\x75\xf0\xd4\xbf\x34\x63\xbb\xcd\xc9\xc8\xc3\x1b\x90\x5a\x37\xf8\x4f\x3e\x6c\xd6\x22\x0f\x07\xab\xc8\x27\xcf\x34\x56\x60\x99\xee\xbe\x5a\xc8\xe9\x91\xcd\x4d\xec\x3a\x28\x57\x78\x38\xa1\xb1\x35\x3a\x3d\xdf\xe1\x10\xb6\x97\x15\xc0\xd3\x77\xa8\x8d\x73\x63\xae\x99\x2a\x92\xcd\xda\xe7\x64\xf5\xa5\xbe\x03\x00\x00\xff\xff\xd4\x84\xfb\xa9\xf4\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x5f\x6e\xdb\x30\x0c\x87\xdf\x75\x0a\x22\x4f\x2b\xd0\x79\x27\xe8\x49\x8a\x42\x60\x25\x36\x16\x2c\x91\x86\x28\x37\x19\x86\xdd\x7d\xf0\x9f\x2c\x72\xad\x34\xc8\xdb\xf7\xfd\x4c\x8a\xa2\x92\xf8\x29\x12\x9c\x2e\x92\x07\xca\x76\xcc\xf2\x11\x22\x9d\xe0\x8f\x01\x50\x99\xb2\x23\x38\xfe\x5e\xe0\xd4\x75\xbf\xd6\x7f\xc2\xe2\xfa\x77\xb9\xfe\xfc\x88\x58\x1c\xe6\x93\x01\x70\x32\x71\x69\xe4\xe0\x05\x22\xf1\xb9\xf4\x3f\x3e\x31\x77\x5b\x49\xc6\x44\xfa\x64\x00\x50\x95\x8a\xf5\x21\x1f\x53\xb3\xfe\x1f\x1b\x00\x16\x4f\x4b\xb0\xad\xd6\x5f\x7e\x5d\x9a\xe9\x02\x7b\xba\xbe\xdd\xa2\x09\x5d\xa3\xb7\x2a\x9a\xd0\xb5\x93\x5e\x12\x06\xfe\x26\xb9\x0a\x87\xb0\x97\x0b\x47\x41\x3f\x4f\xb8\x88\x93\xb8\x0f\x1f\xb0\x01\x10\xb5\xae\x47\x66\x8a\xcd\x4e\xef\x78\x75\x3f\x29\x6b\x10\x7e\xe4\x6e\xd8\x00\xf4\xa5\x8c\x96\xd8\x8f\x12\xf6\xb7\xb4\xba\xb7\x0b\xb5\x3b\xcf\x00\x0c\x94\x99\xa2\xc5\x7c\xd6\x56\x8d\x0a\xdf\x65\x27\xac\x12\xe9\x91\xbc\x61\x03\x10\x58\x0b\xc6\x48\xd9\xba\xe8\xac\x72\x18\x47\x2a\xba\xae\x8c\xc8\x30\x8d\xcb\xca\xb4\xad\xe7\xef\x2f\xfd\x19\x5e\xdf\x9e\xee\x25\xac\x0f\x3a\x34\xfa\xaf\x71\x65\x17\xb1\x9a\xe6\x9a\x5a\xd6\xe4\xde\xfe\x8a\x97\xed\xe7\x82\x81\x29\xdb\x18\x78\xba\x5a\xa1\x54\xd7\x69\xe0\xf9\xad\x69\x6f\x07\xfa\xad\x0f\xd6\xf2\x86\xe7\xc6\xce\x1c\x4a\x10\x5e\x46\xe0\x84\x3f\xc2\xf9\x66\xae\x8f\x79\x9b\xc4\x6e\x06\xdd\x5d\x9e\x3b\x44\xd7\x93\xb7\xdb\x19\x0e\xc5\xf6\xd8\x00\x5c\xc2\x48\x16\xbd\x5f\xea\xe2\x3a\x22\xad\x36\xbf\x85\x0d\xc0\x78\x25\xeb\x24\x25\x64\xaf\x8d\x33\xd5\xb8\x1a\xf8\x98\xc9\x66\x7a\x17\x29\xd6\xa5\x39\xb8\x1f\xf8\x17\x6c\xfe\x9a\x7f\x01\x00\x00\xff\xff\x26\xbf\x5d\x76\xc3\x04\x00\x00"), }, "/terraform-modules/bootkube": &vfsgen۰DirInfo{ name: "bootkube", @@ -6786,9 +6786,23 @@ var vfsgenAssets = func() http.FileSystem { "/terraform-modules/matchbox-flatcar/profiles.tf": &vfsgen۰CompressedFileInfo{ name: "profiles.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3392, + uncompressedSize: 3510, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x55\xdd\x6a\x33\x37\x10\xbd\xdf\xa7\x18\xb6\xf9\x8a\x03\xf1\xee\x4d\xe9\x45\x60\x29\xa5\x50\x28\x94\xbe\x40\x29\x62\x2c\x8d\xbd\x6a\xf4\xb3\x48\xda\x24\x4e\xd8\x77\x2f\x92\x56\xb6\xd7\x71\xdc\xb4\x94\x96\x42\xf6\x26\xb1\xe6\xcc\xe8\x68\xfe\x8e\x23\x6f\x47\xc7\x09\x6a\x8d\x81\xf7\x1b\xfb\xcc\x06\x67\xb7\x52\x51\x0d\xf5\x56\x61\xe0\xe8\xd6\xd2\xf8\x80\x4a\xd5\xf0\x5a\x01\x18\xd4\x04\x1d\x6c\xad\xd3\x18\x56\x15\x00\xbc\x01\xae\xbf\xf8\xfa\x2e\x59\x1e\xd1\x35\xc6\x0a\x62\xd1\xab\x02\xb8\xad\x2a\x80\x07\x72\x86\x14\x74\x50\xdf\xbc\x46\x80\xb0\x4f\x46\x59\x14\xf1\xe6\x60\xb9\x55\xd3\x7d\xdb\x66\x93\xf5\x8c\xf7\x68\x0c\xa9\xa9\x71\xa4\x08\x3d\x35\xe5\x32\x25\xcd\xf8\xdc\x18\x0a\x2d\x6a\xf1\xed\x37\xeb\xd1\xbb\xa3\xd7\x23\x39\x2f\xad\x99\xda\x19\x1d\x63\x8b\x91\x07\x69\x0d\x1b\x9e\xa9\x79\xd4\xd1\xfd\xa5\x8e\x7c\xa4\x91\xc1\x09\xe8\xe0\xd7\xfc\x9a\xff\x8c\x15\x93\x1a\x77\xd4\xf0\x41\xda\x66\xf7\x92\x52\xf8\x5b\x24\x88\x6e\xe7\x63\xca\x15\x86\x40\x66\x35\xd3\xcc\xb4\xbb\x0f\x87\x8a\x2e\x3b\x23\x23\xa2\xe1\xd6\x6c\xe5\xae\x19\x9d\xea\x32\xb9\x3e\x84\x81\x91\x11\x83\x95\x26\x4c\x6d\x01\x7e\x37\x8e\x52\x74\x37\x37\xaf\xf1\xef\xf4\xb5\x46\x1e\x7f\x68\xe4\xf7\x3d\x3d\xf7\xfb\x61\x2a\x91\x67\x16\xcd\x56\x3a\x1f\xd8\xc6\xda\xd0\xed\xe9\xb4\x0b\x72\xd1\x19\xb7\xc6\x5b\x45\x6f\xce\xe3\x13\xd3\x7b\x53\x87\x38\x7c\x62\x85\x02\x74\x20\x30\x60\xc3\x03\x9b\x59\x97\x2e\x2b\x08\xdf\x38\x32\x82\x1c\x89\x6a\xaa\xaa\x08\x86\xfa\x80\xae\x63\xa2\xce\xf0\xb9\x91\xb9\x35\x81\x4c\x80\x0e\x02\xe9\x41\x61\xa0\xd8\xf6\xab\xfa\xe6\x75\xc0\xd0\x37\xda\x8a\x51\xd1\xd4\x16\xa3\x6f\xe7\x38\xcd\x1e\xb5\x6a\x82\x1e\x54\x7d\x97\x02\x01\x1c\x1b\x02\x96\x5f\x07\xcb\x7e\x29\xe8\xb9\x11\xde\x43\xcf\xe6\x84\x2e\xac\x0f\xd5\x39\xa2\xe7\x19\xac\xbf\xf8\x43\xc1\xea\x3b\x78\x53\xce\xdb\x1c\x27\xb3\x67\x42\xfa\x87\x0b\xb7\x9e\x9a\x13\x3e\xa6\x07\xa5\x21\xc7\x52\x4b\x33\x4b\xfa\x14\x7f\xc1\x9c\xdc\xbc\xef\xd9\x03\xed\x3d\x9c\x7f\x1d\xfc\xee\xad\x21\xc3\xad\xa0\x55\x8c\x50\x90\x4b\x7a\xc1\x32\xaf\x51\x29\xf2\x21\x53\x5d\xd2\x3b\x37\x27\xdf\x65\x6f\x2d\xef\xb4\xd2\xac\x6a\x98\xd3\xb2\x04\xde\x9e\x3a\xa7\x19\x3b\x27\x7c\xc9\x39\x02\xb3\xe7\x93\x1c\x88\xa1\x10\x29\xf1\x98\x53\xe7\x8f\x19\xba\x68\x5e\xbc\x75\x70\xc4\x1c\xc5\x61\x61\x5c\x0b\x7f\x5e\x8a\x33\x73\x72\xfd\x0a\xac\x51\x7b\xe0\xc8\x7b\x12\xeb\x43\x11\xf2\xda\x81\x79\x75\x03\x0a\xe1\x61\xbd\x81\x0d\x7a\x1a\x5d\xee\xba\xf9\x7f\xb6\x55\xb8\x8b\xbb\xb7\x4e\xa7\x1a\x79\xe4\xe8\xc8\x1f\xae\x4f\xfb\x5a\x23\xaf\x00\xa6\x34\x8d\x83\xa3\x10\xf6\x6c\x70\x32\x4d\xcb\x16\x95\xa7\x78\xee\x8d\x1c\x06\x0a\x7e\x49\x9b\x1c\xe3\x8a\xb3\x62\x8c\x23\xd9\xb6\xf0\x63\xde\x0f\xf0\x43\x61\x0c\x3f\x27\xc6\x3f\x65\xa7\x03\xf3\xd5\xd6\x59\x0d\x45\x8b\xa0\x45\xef\xe3\x0d\xe9\xbd\xb7\x31\xd0\x2f\x36\xd0\x3d\x7c\x2f\xb4\x34\xa0\x47\x1f\xa0\xc7\x47\x82\xb2\xac\x49\x9c\x4e\x97\x34\xc1\x1e\x63\xe5\x50\x65\xf5\x36\xd5\x55\xe9\x9b\x13\xbc\xd8\xea\x7f\xae\x83\xd7\xbc\x3e\x2c\x8a\xed\x92\xe8\x3f\xa3\x69\x7f\x37\xe8\xa7\x24\x7d\x48\x92\xe6\xc2\xff\x55\x65\x7a\xcf\xed\x53\xa0\x3e\x05\xea\x7f\x2b\x50\x65\x95\x8f\x9e\x4e\x45\x08\x82\x2d\x71\x61\xb9\xe4\xd3\x14\x5c\xd4\xa8\xf5\x06\x2e\xee\x82\xe5\x32\xfb\x17\x95\xec\xaa\x66\xc4\xeb\xde\xd7\x86\x68\xbd\xa6\x01\x6f\x56\x4c\x62\x52\x66\x2b\x12\xc9\x6b\x23\xd2\xf8\x23\x00\x00\xff\xff\xba\x43\x45\x80\xb6\x0d\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/pxe-helper.sh.tmpl": &vfsgen۰CompressedFileInfo{ + name: "pxe-helper.sh.tmpl", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 3719, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xdc\x36\x10\xbd\xeb\x57\xbc\x68\x85\xd8\x06\xec\x5d\x07\x45\x7b\x48\xa0\xb6\x40\xd1\x20\x68\x80\x36\x80\x5b\xa0\x40\x1c\x2c\xb8\xd4\x48\x62\x4d\x91\x0a\x87\xdc\xf5\xc2\xdd\xff\x5e\x90\x92\xf6\xc3\x6e\xd2\x5b\xe1\x93\xbd\x1c\x7e\xcc\xbc\x99\xf7\x66\x34\xc3\x39\xdd\x93\x0c\x9e\x2a\x28\x73\xa5\x95\xa1\x4b\xcc\x5e\x2c\xe6\xf3\x39\x36\x36\xe8\x0a\x2b\x82\x6a\x8c\x75\x54\x5d\x64\x33\xfc\x4e\xce\x89\xda\xba\x0e\x9e\xba\x5e\x0b\x4f\x58\x0b\xa7\xc4\x4a\x13\x38\xac\xd8\x2b\x1f\xbc\xb2\xe6\x75\x66\x44\x47\x65\xf1\x10\xff\xec\xb2\xca\x76\x42\x99\xb2\x78\x18\xfe\xd9\x65\x9d\x90\x65\xf1\xd0\x09\xb9\xcb\x04\x33\xf9\x65\xa5\x5c\x59\x3c\xec\xff\xdf\x65\xc3\xa3\x4b\xd9\x0a\xd3\x10\x97\xc5\xc3\xe9\xc2\x2e\xbb\x23\x67\x48\x2f\x85\x6b\xb8\xcc\x8b\x87\xa3\x9f\xbb\x7c\x32\x4a\x6b\xd8\x6a\x3a\xb2\x8f\x2b\xbb\x3c\x3e\xa0\xa2\xab\x4b\x32\x55\x6f\x95\xf1\x71\xd7\x93\xc5\x5d\x9e\xcd\xf0\xd6\xd9\x0e\xc6\x6e\x60\x0d\x02\x13\x8a\xb5\x70\xa8\xad\x43\xb5\x35\xa2\x53\x12\xdc\x92\xd6\x27\x00\x64\x99\xaa\xe1\x89\x3d\xae\x6a\xe4\xc5\x3e\xb0\x45\xd1\x09\x99\xe3\xe5\x4b\x7c\x44\x5e\x9c\x4b\xe1\x9f\x5a\x2f\x72\x94\xc8\x8b\x01\xab\x1c\x9f\xde\xc0\xb7\x64\x32\x80\x64\x6b\x91\xd7\x36\x98\x0a\x8f\x0e\x41\x5a\xe3\x85\x32\xca\x34\x18\x4f\x5e\x82\xef\x54\xdf\xc7\x95\x0f\x7f\xfe\x0c\x65\xd8\x0b\xad\xf3\x0c\x30\xb6\xa2\x25\xdd\x2b\xf6\x5c\x6e\x89\x33\xd2\x4c\xfb\xeb\x1f\x5f\x5c\x59\x62\x18\xeb\xa7\x17\x0e\xd7\xd7\xd6\xc9\xff\xb8\xdd\xd8\xac\x56\x09\x8b\x8f\x28\x8e\x0c\x28\xb1\x25\x3e\x0a\x4d\xd5\x28\x4e\x33\x8c\xbd\x6d\xf2\xec\x3d\x51\x8a\xc6\xea\x2a\x3a\x53\xab\x06\x2b\x92\x22\x66\xe4\xec\xf4\xec\x19\x14\x83\xc9\xcf\xf3\xe1\xf8\xbd\xf2\xb8\x8e\x11\x0e\x81\x02\x33\xb8\x60\xc0\xca\x34\x9a\x20\x6d\xd7\x09\x53\x31\x7c\x2b\x3c\xa4\x30\xb1\xe8\x1d\x79\xa7\xa8\xc2\x46\xf9\xd6\x06\x0f\x01\x56\x15\x81\xea\x9a\xa4\x87\x32\x90\x82\x29\x7a\x18\x5d\x31\x24\x63\xd2\xd1\x58\x8f\x4a\xb1\x0b\xbd\xa7\x2a\x3d\x24\x6d\x30\xbe\xfc\xe6\x3a\xfd\xd8\xb4\x4a\x53\x44\x22\xad\xe2\xaa\xf1\xb8\xc6\xa7\x58\x0c\x2f\xc0\xdc\xe2\xca\xe2\xc6\x3b\x25\xfd\x3b\xcb\xfe\x3d\x6d\x7f\x6a\x49\xde\x29\xd3\x94\xc6\x46\xdb\x1f\x4c\xee\xbd\xb1\x1b\x13\xcd\xfc\x56\x69\x2a\x17\x15\xad\x17\x26\x68\x1d\xed\xbf\x86\x6e\x45\xee\xb7\xfa\x83\x60\xde\x58\x57\x7d\x70\xb6\xeb\x3d\x97\xd7\x90\xd6\xd1\x8f\x63\xde\xc0\xa1\xb2\xf0\x36\xc8\x16\x8b\x95\xb5\x7e\x51\x6b\xe1\xa5\x70\x8b\x5a\x39\xf6\xcb\xb8\xf4\x06\x95\x4d\x1e\x03\xac\x89\x7a\xbc\x1a\x7f\x0d\xe1\x14\xe7\xe7\x63\x04\x78\x75\x71\x91\x4c\x95\x35\x03\xb2\x43\xaa\x47\x33\x7d\x8e\x01\x1e\x25\x72\x4a\x25\x39\x67\x1d\x1c\x09\xd9\x1e\x55\x2c\xd6\x4a\xe0\xe6\xe6\xdd\x25\x7a\x4d\x11\x5e\x47\x9d\x5d\x0f\x28\x3f\x2e\xcb\x3a\x42\xe9\x6d\x2a\x42\x82\x78\x5c\x84\xfb\xb4\x0f\x9e\xd7\xea\xa8\x8e\xa4\x23\x11\x05\x2f\x5e\x7b\x88\x19\xb5\x16\xcd\xfe\x5a\x47\xbd\xb3\x6b\xc5\x31\xab\x13\x13\x8f\x12\xfa\xed\x33\xca\x67\xde\x3b\x65\x7c\x8d\x33\x26\x0f\xad\x4c\xb8\x5f\x8a\xbe\x27\x53\x95\xb7\x79\x71\x24\x8b\x98\xc4\x6d\x3e\x90\x67\x1e\x9c\x2e\x8b\x27\x8a\xf7\x43\xd2\xe6\x4e\xc8\x97\x96\xcb\x11\x51\xaa\x6e\xf3\xdb\x5b\x73\x78\x60\x12\xd6\xc3\x0b\xe3\x4a\xda\x77\x86\xbf\xc7\x2a\x23\xc2\x22\xb0\x5b\x70\x2b\x1c\x2d\x2c\x75\x8b\xc6\x85\xd5\x5c\xd6\x4d\xfe\x7c\x6a\xcc\xbb\xed\x97\x4b\xe6\xf9\xe5\x3b\x21\xcb\x5b\xf6\xd4\x49\xaf\xe1\xe8\x79\x31\x36\x71\xa9\x13\x26\x08\xad\xbf\x82\xeb\x70\xeb\xb0\x7d\xe4\xe2\x11\xcf\x6a\x35\x35\xa5\x59\x32\x05\x26\x87\x4e\x6c\x91\x58\x59\x11\x54\xdf\x29\x6f\xad\x3e\x88\xb7\x75\x10\x66\x0b\xeb\x5b\x72\xd0\xb6\x51\x32\xb5\xe8\xa9\x49\x0d\x0a\x11\x5f\xcb\x80\xe2\xa1\xbf\xa7\xe5\x74\x74\x97\x7a\xd4\xa8\x0d\x63\xca\x86\x5e\x30\x45\x29\x6d\x47\x8c\xd0\xe7\xd9\x00\xe7\x77\xd7\xd7\xd9\x0c\x69\xef\xb0\x71\x43\xa9\x6f\x24\x78\x92\xc3\xb1\xd7\x41\x98\x6a\x30\x2b\x8f\x56\xf0\x20\x38\x7b\x95\xd9\xb4\x4a\xb6\xf1\xe4\xa8\x72\x2d\x39\xba\x84\x32\x95\x92\xc2\x0f\x2e\x8f\x68\xb6\x89\xcf\xb1\x19\xa5\x23\xbd\xa3\x35\x19\xcf\x71\x83\x90\xf1\x22\x32\x50\xcc\x61\xf0\x7b\x9f\x04\x2f\xee\x88\xa1\xad\x69\xc8\xe1\x7c\x65\xfd\xe0\xda\xe3\xd2\x49\x6e\x46\x70\x62\x47\x8b\x43\xde\x2f\x81\xbf\xd8\xe1\x56\x8e\xc4\x1d\xa7\x23\x37\x37\xef\x52\x4a\x1c\xf5\xd6\xc5\x5b\x30\xd4\x88\x8c\xa1\xaf\x82\x07\x7b\xa5\x35\xc6\xf9\x12\x1c\xa4\x24\xe6\x3a\x68\xbd\xbd\x8c\x61\x6f\xa2\x35\xe9\xef\x88\x64\x42\x25\xcd\x07\x64\xe4\x84\x1e\x19\x54\xa4\xc9\x53\xea\xc4\xc8\x5d\x87\xab\x3a\x8f\x12\xbd\x22\xa4\xb9\x33\xa9\x75\x6c\xe7\x29\xc2\x29\xa9\xf3\x38\xad\xb6\x69\x0c\xf8\x1c\xd2\x7d\x8d\x5a\xc7\x24\x0e\x69\x60\xd1\x11\xa6\x9a\x8e\xfe\x27\xc0\x19\x7f\xc5\xd8\x5d\x30\x69\x90\xca\x5d\x97\xc3\x1a\x49\xf3\xec\x79\x50\x7f\x1a\x28\x17\x7b\xd5\x76\xc2\x8c\xd4\x3f\xd0\xfe\x5f\x29\x9f\xe8\xfe\x35\xaa\x1f\xd1\xfc\x35\x6a\xa1\x34\x55\x58\x93\x53\xf5\x36\x42\x91\xc0\x8f\x19\x8f\x83\xda\xc4\x8a\x88\x61\xe8\xb1\xda\xe2\x88\x36\x74\xea\xdd\xa1\xe0\x23\xaf\x47\x1d\xa8\x55\x36\xe9\xea\xf3\x00\x36\x69\x6a\x2a\xad\xff\x0d\xdb\x54\xb6\xfb\xf1\xe6\x0b\x98\xe1\x74\xfc\x18\xe1\x3b\x9d\xd7\x1f\x65\x43\x34\x69\x73\xad\xb2\x19\xac\xd1\x5b\x6c\x9c\xf2\xc3\x23\xec\xe3\x07\xdb\x78\xaf\xa4\x23\x35\x88\xf3\x72\xe8\x2f\xe1\x23\x63\x84\xd6\x76\xc3\x07\x5e\x69\x7b\x67\xa3\x5c\xc4\x2f\x9a\x69\x64\xda\xab\x29\x2a\x55\xa5\xcf\x83\x8d\x75\x77\x89\xb3\xca\x0f\xd4\xf6\x6e\x3b\x38\x33\x48\xeb\xe4\xe7\xf7\x4f\x3f\x78\xb2\x7f\x02\x00\x00\xff\xff\x60\x22\x38\x28\x87\x0e\x00\x00"), + }, + "/terraform-modules/matchbox-flatcar/ssh.tf": &vfsgen۰CompressedFileInfo{ + name: "ssh.tf", + modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), + uncompressedSize: 1043, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x55\xdd\x6a\xf4\x36\x10\xbd\xf7\x53\x0c\x6e\xbe\xb2\x81\xac\x7d\x53\x7a\x11\x30\xa5\x14\x0a\x85\xd2\x17\x28\x45\xcc\x4a\xe3\xb5\x1a\xfd\x18\x49\x4e\xb2\x5f\xf0\xbb\x17\x49\xd6\xee\x3a\xd9\xa4\x69\x29\xcd\x4d\x7c\x93\xac\xe6\xcc\xcc\xd1\x68\x66\x8e\x23\x6f\x27\xc7\x09\x6a\x8d\x81\x0f\x3b\xfb\xc8\x46\x67\x7b\xa9\xa8\x86\xba\x57\x18\x38\xba\xad\x34\x3e\xa0\x52\x35\x3c\x55\x00\x06\x35\x41\x07\xbd\x75\x1a\xc3\xa6\x02\x80\x17\xc0\xed\x17\x5f\xdf\x24\xcb\x3d\xba\xc6\x58\x41\x2c\x7a\x55\x00\xd7\x55\x05\x70\x47\xce\x90\x82\x0e\xea\xab\xa7\x08\x10\xf6\xc1\x28\x8b\x22\x66\x0e\x96\x5b\x35\xdf\xb6\x6d\x36\x59\xcf\xf8\x80\xc6\x90\x9a\x1b\x47\x8a\xd0\x53\x53\x92\x29\x69\xa6\xc7\xc6\x50\x68\x51\x8b\xef\xbf\xdb\x4e\xde\x9d\xbc\xee\xc9\x79\x69\xcd\xdc\x2e\xe8\x18\x5b\x4c\x3c\x48\x6b\xd8\xf8\x48\xcd\xbd\x8e\xee\x5f\xeb\xc8\x47\x1a\x19\x9c\x80\x0e\x7e\xcf\xb7\xf9\x30\x56\x4c\x6a\xdc\x53\xc3\x47\x69\x9b\xfd\xd7\x54\xc2\x3f\x22\x41\x74\x7b\x1f\x4b\xae\x30\x04\x32\x9b\x85\x66\xa6\xdd\xbd\x3b\x54\x74\xd9\x1b\x19\x11\x0d\xb7\xa6\x97\xfb\x66\x72\xaa\xcb\xe4\x86\x10\x46\x46\x46\x8c\x56\x9a\x30\xb7\x05\xf8\xc3\x34\x49\xd1\x5d\x5d\x3d\xc5\xbf\xf3\xb7\x1a\x79\xfc\xa1\x91\xdf\x0e\xf4\x38\x1c\xc6\xb9\x44\x5e\x58\x34\xbd\x74\x3e\xb0\x9d\xb5\xa1\x3b\xd0\x79\x17\xe4\x47\x67\xdc\x1a\x6f\x15\xbd\x38\x8f\x57\x4c\xf7\x4d\x1d\xe2\xf0\x81\x15\x0a\xd0\x81\xc0\x80\x0d\x0f\x6c\x61\x5d\xba\xac\x20\x7c\xe3\xc8\x08\x72\x24\xaa\xb9\xaa\x22\x18\xea\x23\xba\x8e\x85\x7a\x86\xcf\x8d\xcc\xad\x09\x64\x02\x74\x10\x48\x8f\x0a\x03\xc5\xb6\xdf\xd4\x57\x4f\x23\x86\xa1\xd1\x56\x4c\x8a\xe6\xb6\x18\x7d\xbb\xc4\x69\x0e\xa8\x55\x13\xf4\xa8\xea\x9b\x14\x08\xe0\xd4\x10\xb0\xfe\x3a\x58\xf7\x4b\x41\x2f\x8d\xf0\x1a\x7a\x31\x27\x74\x61\x7d\x7c\x9d\x13\x7a\x99\xc1\xfa\x8b\x3f\x3e\x58\x7d\x03\x2f\x9e\xf3\x3a\xc7\xc9\xec\x99\x90\xfe\xee\x42\xd6\x73\x73\xc2\xc7\xf2\xa0\x34\xe4\x58\x6a\x69\x66\x49\x9f\xe3\x2f\x98\x93\x9b\xf7\x03\xbb\xa3\x83\x87\xe7\x5f\x07\x7f\x7a\x6b\xc8\x70\x2b\x68\x13\x23\x14\xe4\x9a\x5e\xb0\xcc\x6b\x54\x8a\x7c\xc8\x54\xd7\xf4\x9e\x9b\x93\xef\xba\xb7\xd6\x39\xad\x34\x9b\x1a\x96\xb2\xac\x81\xd7\xe7\xce\x69\xc6\x9e\x13\xbe\xe4\x1c\x81\xd9\xf3\x41\x8e\xc4\x50\x88\x54\x78\xcc\xa5\xf3\xa7\x0a\x5d\x34\x27\xc7\x6f\xc0\x1a\x75\x00\x8e\x7c\x20\xb1\x3d\x56\x32\xef\x0e\x58\xf6\x2f\xa0\x10\x1e\xb6\x3b\xd8\xa1\xa7\xc9\xe5\xd6\x59\xfe\x67\xbd\xc2\x7d\x5c\xa0\x75\x3a\xd5\xc8\x63\x22\x47\xde\x97\xe4\x69\xe9\x6a\xe4\x15\xc0\x9c\x46\x6a\x74\x14\xc2\x81\x8d\x4e\xa6\x96\xef\x51\x79\x8a\xe7\xde\xc8\x71\xa4\xe0\xd7\x75\x26\xc7\xb8\xe2\xac\x18\xe3\x5c\xb5\x2d\xfc\x9c\x87\x1c\x7e\x2a\x8c\xe1\xd7\xc4\xf8\x97\xec\x74\x64\xbe\xe9\x9d\xd5\x50\x04\x05\x5a\xf4\x3e\x66\x48\xf7\xbd\x8e\x81\x7e\xb3\x81\x6e\xe1\x47\xa1\xa5\x01\x3d\xf9\x00\x03\xde\x13\x94\x8d\x4b\xe2\x7c\x44\xa4\x09\xf6\x14\x2b\x87\x2a\xfb\xb3\xa9\xde\xd4\xaf\xa5\xc0\xab\xd5\xfc\xf7\x62\xf6\x96\xd7\xbb\x95\xad\x5d\x13\xfd\x6f\x84\xe9\xdf\x06\xfd\xd4\x95\x77\xe9\xca\xf2\xf0\xff\x54\x5e\x5e\x73\xfb\x54\x99\x4f\x95\xf9\x58\x95\x29\xfb\x78\xf2\x74\xae\x24\x10\x6c\x29\x04\xac\x37\x75\x6a\xe5\x8b\x42\xb3\xdd\xc1\xc5\x81\x5e\x6f\xa4\xff\x51\x8e\xde\x5c\xfc\x31\xdd\xeb\x0b\x3e\x5a\xdf\x5a\xe4\x2f\xf6\x44\x62\x52\x06\x24\x12\xc9\xb3\x1f\x69\xfc\x15\x00\x00\xff\xff\xfa\x8c\x81\x03\x40\x0d\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x8a\xdb\x30\x10\xbd\xe7\x2b\x1e\x6e\x0b\x59\x70\xb2\x5f\x90\x53\xe9\xa1\xb7\x1e\x0a\x2d\x94\x62\x14\x69\x6c\x6b\x2b\xcf\x88\x91\xb2\x9b\x12\xf2\xef\x45\x8e\x92\x78\x17\xda\xde\x32\x6f\xde\x9b\xbc\x37\x1a\x2b\x25\x39\xa8\x25\x34\x7c\x08\xa1\xbb\x96\x0d\x1a\xa5\xa8\xf2\xec\x93\x17\xde\xb0\x38\xda\xbc\x8c\xc4\x1b\x3f\xb0\xcf\x05\xb2\xa3\xe1\x81\x52\x83\xd3\x0a\x78\x87\xaf\xea\x87\x81\x94\x1c\x0a\x0d\x79\x24\x7c\xae\x54\x7c\x14\xee\xfd\x80\xaa\x58\x01\xf9\x42\x4e\xd8\xcd\x6a\xe0\x3a\xb5\xb3\x17\xea\x0e\x93\xc9\x76\xdc\xcb\xb1\x8b\x2a\xbd\x0f\xb4\x2d\x16\xb6\x6a\x5e\xba\x2b\x77\x16\xfe\x22\x65\x0a\x9d\xd1\x21\x95\x12\x3b\x3c\x89\xe7\x75\x83\xa6\xc5\xb3\xd1\xed\xa2\xff\xb0\x14\x58\xe1\x24\x81\xfe\x2a\xa8\xfd\xa2\x39\xcf\xf9\xbe\x19\x9f\xd1\x8b\xce\xc9\x98\x5e\xee\xe9\xaa\x65\xd9\x3f\x91\xcd\xc8\x82\x3d\x41\xc9\xb8\xdf\xd8\x53\x2f\x5a\x8a\xbd\x48\xf6\x3c\xac\x00\x47\x91\xd8\xa5\x4e\x18\x3b\xfc\xb8\x85\x1c\x54\x0e\x71\x8e\xf8\x73\xb9\x4d\xe8\x81\xd9\xf3\x70\xff\x33\xe1\x6a\xe0\x98\xeb\x5c\xac\x7b\xaf\x29\x77\xf3\xef\x3e\x98\x01\x65\x5d\x0f\x30\xec\xae\x8c\xa2\xf0\x9c\xb2\x61\x4b\x2d\x44\x5b\xf8\xfe\x15\x08\x26\x72\xa9\x7a\x5f\x2b\x3d\xdc\x5e\x9e\x5c\x5b\x4c\x80\x8e\x99\x94\x4d\x80\x95\x69\x32\xec\xd2\xbc\x8b\x2f\xdf\x3f\xa1\x66\xc3\xda\x84\x24\x85\x9b\xae\x26\x67\x5f\xb8\x8d\xf2\x3c\x94\x75\xde\x47\x2b\x9a\x20\xd6\x84\x0d\x1d\xc9\x36\xf5\x12\xea\x7c\xec\x90\x69\x8a\xc1\x64\x2a\x71\xd6\xcd\xfb\x53\x34\x79\xdc\x4e\xe2\x0e\x81\xce\x8f\xf1\x48\x9b\x91\x42\x24\xdd\xa6\x71\x9b\xa7\x18\x9a\x16\x27\x38\x99\x8c\x2f\xab\x2d\x4f\x59\xd6\xd9\x5d\x90\x16\x6c\x26\x5a\xe2\xa5\x6e\x31\x19\xbb\x04\x27\x63\x5b\xc4\x23\x75\xb7\x94\x97\xe6\x12\x6a\x61\x52\xa2\xdc\x39\xaf\xb5\x7b\xab\xdb\x57\xe7\xf8\xaf\x53\x6c\xdf\xde\xe1\x7f\xce\xb0\xbd\x7f\x21\xc4\x2e\x8a\xe7\x8c\x5d\x79\x82\xc9\xe4\x75\xf3\x21\x3d\x5e\xdb\x55\x3e\xe6\x1c\x6f\xcc\x8b\x5a\x94\xba\xfa\x05\x56\xdf\x6f\xc0\xf3\xe5\xd8\xcf\xab\x3f\x01\x00\x00\xff\xff\x14\x9c\xd5\x15\x13\x04\x00\x00"), }, "/terraform-modules/matchbox-flatcar/templates": &vfsgen۰DirInfo{ name: "templates", @@ -6797,16 +6811,16 @@ var vfsgenAssets = func() http.FileSystem { "/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: 2463, + uncompressedSize: 2500, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x6f\x6f\xdb\xb6\x13\x7e\x9f\x4f\x71\x3f\xd5\xbf\xb5\x1d\x2a\x3b\x0d\xb0\x37\x2e\xd4\x21\xdd\x3c\x2c\x40\x93\x0c\x73\xda\x01\xcb\x02\x81\x12\x4f\x36\x61\xea\xa8\xf1\x4e\x76\x5c\xc7\xfd\xec\x03\x25\xdb\x91\x9c\xec\xcf\x3b\xfb\xee\xe1\xc3\x87\xbc\xe7\x8e\x8a\xe3\xf8\x84\xd7\x2c\x58\xea\xf1\x09\x40\x4d\x46\x38\xfc\x00\x88\x81\x54\x89\x63\x30\xc4\xa2\xac\x45\x3f\x64\xf4\x4b\x93\x63\x93\x05\x40\x52\x99\xc5\x31\x88\xaf\xf7\xa1\xdc\x91\x20\x09\x8f\xe1\x61\x17\x01\xb8\xfd\x44\x46\xee\x0e\x7f\x7f\xc5\x3f\x6b\xe3\x91\x13\x42\x59\x39\xbf\x88\x1d\x59\x43\x38\x14\xe5\x67\x28\x07\xd8\x79\x21\xe8\xff\x05\x73\x3b\x6d\xf5\x3c\x92\xdf\xac\x2b\x4c\x1c\x21\xcf\x9d\x74\x76\x2c\x95\xa1\x86\x70\x72\x6f\x24\xe9\xe8\x0d\x49\x16\xe5\x25\x71\x14\x17\xca\xd8\xda\x3f\x49\x4d\x31\x4f\xde\x9e\xf2\x21\x3c\xb9\xc7\x7c\xda\xac\x19\xb9\x4a\x46\x87\xdb\x79\x94\x75\xd1\x86\x1e\x65\xfd\xa6\x48\x50\x7f\x58\x27\x65\x6d\xc5\xc4\x35\xa3\xef\x9e\xe5\x05\x9c\x2f\x9d\xd1\x50\xb3\xa1\x19\xc8\x1c\x81\x45\x91\x56\x5e\xc3\x74\xfa\x33\x54\xce\x0b\xb0\x83\x1b\xf4\x5e\x15\xce\x97\xa0\xaa\xca\xae\x21\x57\x44\x4e\x1a\x48\x4d\x62\xec\x8e\xab\x72\x2c\xf1\x4e\xd5\x10\x3e\xd4\x02\x4a\x97\x86\x18\x4a\xb5\x6e\xc0\xe2\x40\x63\x56\xcf\x40\x1b\x5e\xec\xab\x0b\x95\x77\x99\xc5\x92\x87\x7b\x49\xe1\xbe\xf6\xd9\x37\xc0\x3c\xd7\xb0\x32\xd6\x42\xcd\xd8\x4a\x3a\x3b\x03\x45\x41\x35\x7a\x1e\x3d\x8a\xcb\x15\x05\x1f\x10\xe6\x32\xec\xf9\x28\x50\x0c\xd9\xe5\x8b\x43\x09\xb5\x77\x95\xa1\x9d\xdd\xba\xd0\xb7\xa7\x71\x40\xc7\x61\x9f\x61\xee\xa8\x38\x20\x9e\xf7\x58\xeb\x86\x86\xfa\xae\x17\xfc\x68\x58\x90\xa6\xe2\x51\x95\xc9\xdf\x67\xce\xce\xce\xce\x4e\x58\x9c\x57\x33\x0c\x6a\x0a\x63\xf1\xd0\x05\x95\x92\xf9\x18\x9e\x2d\x76\x83\x6b\x9a\x67\x0c\xde\x1d\x3c\x57\x3a\x8d\x63\x38\xfd\xee\xf4\xf4\xb8\x2f\x0e\x12\x4c\xe3\xe8\xfe\x19\x5e\xfc\x6f\x94\x19\x1a\x65\x8a\xe7\x10\xe3\x7d\x37\x03\x35\x95\xae\x26\x01\x45\x6b\xb0\x58\x88\x5b\xa2\x67\x50\xd2\xd8\x25\xc3\x99\x21\x0a\xe6\xc9\xb0\x70\x1e\x61\x85\x41\x83\x29\xd6\x4d\xba\xa9\x73\xf8\xd1\x52\xd4\x8c\xdc\xe1\xae\xdb\xe8\x48\xca\x6a\xe4\xb0\x2c\x18\x1e\x1e\xa0\xd7\x23\x00\x76\x99\xcf\x15\xcd\x10\x62\x45\x30\xd2\xb8\x1c\x95\xaa\xaa\xd0\x8f\xbe\x7d\x06\xfc\xff\xcd\x57\x30\x05\xac\x4c\x85\xa9\xd2\xda\x88\x71\xa4\x6c\x1a\x54\x30\x7c\xdd\x76\x90\x4d\x28\x89\x06\xaf\x2c\x67\x76\x01\xb1\xa5\x4a\x67\x10\xdf\xc3\xf4\xe2\xf7\x09\xc4\x0e\xae\xce\x2f\x27\xf0\x47\xaf\x6e\x0f\xf0\xaa\xf7\x7f\x35\x37\x16\xe1\xe2\xa7\x69\x02\x1e\x95\x86\xd8\x83\xf6\x66\x89\xef\x40\xbb\x1e\x10\xda\xe3\x57\xce\x90\x70\xd2\xd9\x33\x6c\x74\x79\xfd\xe9\xea\xe6\x97\xeb\x8b\xab\x1b\x88\x06\xcd\xfa\xe8\xf5\xd1\x6a\x53\xc0\xed\x2d\xc4\x5f\x20\x1a\x74\x88\x22\xb8\xbb\x7b\x17\x2e\x97\x8e\xe0\x00\x98\xcf\xdd\x81\xed\x28\x5b\x98\x5e\x40\x3b\xc2\xd7\xaf\xbb\xa0\xc2\xf9\x7d\x7f\xc2\x60\xb0\x69\x6e\x6a\xfb\xe4\x4c\xe1\x8e\x0b\x86\xb8\x80\x58\x41\xb4\xc3\x6d\xa3\x50\x94\x76\x77\xf4\xde\xf9\x31\x84\xd1\x86\x3a\x74\x7e\x58\x01\x07\xe0\x49\x5f\xc2\x51\x11\x91\xb4\x29\xfa\x15\x2b\xac\x92\x5c\xf9\xfd\x7c\x39\xaa\xcd\xae\xf2\xbb\x64\x2a\x2e\xe5\x32\xb4\x0b\x4b\x53\xfd\x3e\x15\x40\xcc\xcf\xac\x47\xcb\xf8\x04\xa8\x61\xb0\xd9\xb3\x36\xca\x9f\x5b\xf8\x54\x2d\x40\xfc\x03\x0c\x36\x8e\xd3\x60\x5f\x42\x7b\xbc\x2e\xfe\xdc\xa6\x43\x33\x19\x47\x4f\xd2\xa1\x7e\x9b\xd0\xbc\xca\x10\xfa\xd4\x1a\xaa\xef\x53\x87\xe5\x36\x3a\x42\x0e\x36\x99\x62\xac\xbd\x4d\x0b\xab\x66\x5d\x0d\xb5\xc6\xa5\xd2\x25\x30\x8a\xd8\xee\x0d\x5f\x4f\x2e\xd3\x1f\x27\x9f\x83\xfd\x33\xbb\x30\x1a\x62\x81\xe8\xe3\xf9\x87\xc9\xc7\xe4\x7a\x72\x19\x85\xcd\x35\x86\xe7\xad\xe7\x8b\x72\xa1\x8d\x87\xb8\xea\xf4\x6b\x37\xdb\xb4\x72\x30\xc2\x8e\x7d\x1b\x3d\x0f\x7c\x11\xde\x10\xa4\xc6\x12\x61\x88\x81\x23\x20\x5c\x85\x57\xc5\xa3\x12\xd4\x50\x29\x2f\x4d\xeb\xbe\x01\xed\x20\x3c\x34\x1e\x4b\xb7\xc4\x76\xa2\x60\xa1\x6a\x2b\x5d\xc6\xc6\x6f\x2f\x19\x05\xda\x5b\x6a\xf9\x93\x68\xb0\x59\xa0\x27\xb4\xa9\xf2\x33\xde\x82\x99\x51\xc3\xda\x4c\x75\x33\x1b\xd6\xde\x26\x83\xcd\x3e\x9a\x22\xe9\xa6\xaf\xb6\xdf\x97\x2a\x4f\x06\x9b\x52\xe5\x61\x86\x78\x64\xde\x7e\xe3\x38\xd9\x0f\x60\x1d\xbd\x84\xf7\xef\x3b\x67\x1b\xcd\x7c\x9d\x0d\xf3\x62\xf6\x0f\x92\x72\x47\xec\x2c\x76\x34\xed\x22\xdb\xff\xc2\xf6\x64\x4e\x76\x72\xed\x1b\x90\x8b\x05\x8f\x59\x78\x07\x2a\xc5\xbc\x6a\x3f\xa8\xc2\xf3\xd8\xff\xa0\xca\xdd\xe1\x2b\x83\x79\x9e\xaa\x5a\xe6\xce\x9b\x2f\xa8\xd3\x05\xae\x79\x0c\x83\x4d\x08\x87\xdf\xdb\x93\xbf\x02\x00\x00\xff\xff\x16\xfb\x08\xa2\x9f\x09\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xef\x6f\xdb\x46\x12\xfd\xae\xbf\x62\x8e\xd1\x5d\x92\x43\x28\x39\x06\xee\x8b\x02\xe6\xe0\xb4\x2a\x6a\x20\x8e\x8b\xca\x49\x81\xba\x06\xb1\xe4\x0e\xa5\x85\x96\xb3\xec\xce\x50\xb2\x22\x2b\x7f\x7b\xb1\xa4\x24\x93\xb2\xfb\xe3\x9b\x34\xf3\xf6\xed\xdb\x9d\x37\xb3\x8c\xe3\x78\xc0\x1b\x16\x2c\xf5\x64\x00\x50\x93\x11\x0e\x3f\x00\x62\x20\x55\xe2\x04\x0c\xb1\x28\x6b\xd1\x8f\x18\xfd\xca\xe4\xd8\x64\x01\x90\x54\x66\x71\x02\xe2\xeb\x43\x28\x77\x24\x48\xc2\x13\x78\xd8\x47\x00\x6e\x3f\x93\x91\xbb\xe3\xdf\x9f\xf1\xf7\xda\x78\xe4\x84\x50\xd6\xce\x2f\x63\x47\xd6\x10\x8e\x44\xf9\x39\xca\x11\x76\x51\x08\xfa\xbf\xc1\xdc\xce\x5a\x3d\x8f\xe4\x37\x9b\x0a\x13\x47\xc8\x0b\x27\x9d\x1d\x4b\x65\xa8\x21\x9c\xde\x1b\x49\x3a\x7a\x43\x92\x45\x79\x49\x1c\xc5\x85\x32\xb6\xf6\x4f\x52\x33\xcc\x93\xb7\x67\x7c\x0c\x4f\xef\x31\x9f\x35\x6b\xc6\xae\x92\xf1\xf1\x76\x1e\x65\x5d\xb6\xa1\x47\x59\xbf\x28\x12\xd4\x1f\x36\x49\x59\x5b\x31\x71\xcd\xe8\xbb\x67\x79\x01\x17\x2b\x67\x34\xd4\x6c\x68\x0e\xb2\x40\x60\x51\xa4\x95\xd7\x30\x9b\xfd\x08\x95\xf3\x02\xec\xe0\x06\xbd\x57\x85\xf3\x25\xa8\xaa\xb2\x1b\xc8\x15\x91\x93\x06\x52\x93\x18\xbb\xe7\xaa\x1c\x4b\xbc\x57\x35\x82\x0f\xb5\x80\xd2\xa5\x21\x86\x52\x6d\x1a\xb0\x38\xd0\x98\xd5\x73\xd0\x86\x97\x87\xea\x42\xe5\x5d\x66\xb1\xe4\xd1\x41\x52\xb8\xaf\x43\xf6\x0d\x30\x2f\x34\xac\x8d\xb5\x50\x33\xb6\x92\xce\xcf\x41\x51\x50\x8d\x9e\xc7\x8f\xe2\x72\x45\xc1\x07\x84\xb9\x8c\x7a\x3e\x0a\x14\x23\x76\xf9\xf2\x58\x42\xed\x5d\x65\x68\x6f\xb7\x2e\xf4\xed\x59\x1c\xd0\x71\xd8\x67\x94\x3b\x2a\x8e\x88\xe7\x3d\xd6\xba\xa1\xa1\xbe\xeb\x05\x3f\x1a\x16\xa4\x99\x78\x54\x65\xf2\xe7\x99\xf3\xf3\xf3\xf3\x01\x8b\xf3\x6a\x8e\x41\x4d\x61\x2c\x1e\xbb\xa0\x52\xb2\x98\xc0\xb3\xc5\x6e\x70\x4d\xf3\x4c\xc0\xbb\xa3\xe7\x4a\xa7\x71\x02\x67\xff\x3b\x3b\x3b\xed\x8b\xa3\x04\xd3\x38\xba\x7f\x86\x17\xff\x1a\x67\x86\xc6\x99\xe2\x05\xc4\x78\xdf\xcd\x40\x4d\xa5\xab\x49\x40\xd1\x06\x2c\x16\xe2\x56\xe8\x19\x94\x34\x76\xc9\x70\x6e\x88\x82\x79\x32\x2c\x9c\x47\x58\x63\xd0\x60\x8a\x4d\x93\x6e\xea\x1c\x7e\xb4\x14\x35\x23\x77\xb8\xeb\x36\x3a\x96\xb2\x1a\x3b\x2c\x0b\x86\x87\x07\xe8\xf5\x08\x80\x5d\xe5\x0b\x45\x73\x84\x58\x11\x8c\x35\xae\xc6\xa5\xaa\x2a\xf4\xe3\xff\x3e\x03\xfe\xf7\xf6\x1b\x98\x02\xd6\xa6\xc2\x54\x69\x6d\xc4\x38\x52\x36\x0d\x2a\x18\xbe\xed\x3a\xc8\x26\x94\x44\xc3\x57\x96\x33\xbb\x84\xd8\x52\xa5\x33\x88\xef\x61\x76\xf9\xeb\x14\x62\x07\x9f\x2e\xae\xa6\xf0\x5b\xaf\x6e\x0f\xf0\xaa\xf7\x7f\xbd\x30\x16\xe1\xf2\x87\x59\x02\x1e\x95\x86\xd8\x83\xf6\x66\x85\xef\x40\xbb\x1e\x10\xda\xe3\x57\xce\x90\x70\xd2\xd9\x33\x6c\x74\x75\xfd\xf9\xd3\xcd\x4f\xd7\x97\x9f\x6e\x20\x1a\x36\xeb\xa3\xd7\x27\xab\x4d\x01\xb7\xb7\x10\x7f\x85\x68\xd8\x21\x8a\xe0\xee\xee\x5d\xb8\x5c\x3a\x81\x03\x60\xbe\x70\x47\xb6\x93\x6c\x61\x7a\x01\xed\x08\x5f\xbf\xee\x82\x0a\xe7\x0f\xfd\x09\xc3\xe1\xb6\xb9\xa9\xdd\x93\x33\x85\x3b\x2e\x18\xe2\x02\x62\x05\xd1\x1e\xb7\x8b\x42\x51\xda\xdd\xd1\x7b\xe7\x27\x10\x46\x1b\xea\xd0\xf9\x61\x05\x1c\x81\x83\xbe\x84\x93\x22\x22\x69\x53\xf4\x2b\x56\x58\x25\xb9\xf2\x87\xf9\x72\x52\x9b\x7d\xe5\xf7\xc9\x54\x5c\xca\x65\x68\x17\x96\xa6\xfa\x7d\x2a\x80\x98\x9f\x59\x8f\x96\xf1\x09\x50\xc3\x70\x7b\x60\x6d\x94\x3f\xb7\xf0\xa9\x5a\x80\xf8\x3b\x18\x6e\x1d\xa7\xc1\xbe\x84\xf6\x74\x5d\xfc\xa5\x4d\x87\x66\x32\x8e\x9e\xa4\x43\xfd\xb6\xa1\x79\x95\x21\xf4\xa9\x35\x54\xdf\xa7\x0e\xcb\x5d\x74\x82\x1c\x6e\x33\xc5\x58\x7b\x9b\x16\x56\xcd\xbb\x1a\x6a\x8d\x2b\xa5\x4b\x60\x14\xb1\xdd\x1b\xbe\x9e\x5e\xa5\xdf\x4f\xbf\x04\xfb\x67\x76\x69\x34\xc4\x02\xd1\xc7\x8b\x0f\xd3\x8f\xc9\xf5\xf4\x2a\x0a\x9b\x6b\x0c\xcf\x5b\xcf\x17\xe5\x52\x1b\x0f\x71\xd5\xe9\xd7\x6e\xb6\x69\xe5\x60\x84\x3d\xfb\x2e\x7a\x1e\xf8\x22\xbc\x21\x48\x8d\x25\xc2\x10\x03\x47\x40\xb8\x0e\xaf\x8a\x47\x25\xa8\xa1\x52\x5e\x9a\xd6\x7d\x03\xda\x41\x78\x68\x3c\x96\x6e\x85\xed\x44\xc1\x42\xd5\x56\xba\x8c\x8d\xdf\x5e\x32\x0a\xb4\xb7\xd4\xf2\x27\xd1\x70\xbb\x44\x4f\x68\x53\xe5\xe7\xbc\x03\x33\xa7\x86\xb5\x99\xea\x66\x3e\xaa\xbd\x4d\x86\xdb\x43\x34\x45\xd2\x4d\x5f\xed\xfe\x5f\xaa\x3c\x19\x6e\x4b\x95\x87\x19\xe2\x91\x79\xf7\x1f\xc7\xc9\x61\x00\xeb\xe8\x25\xbc\x7f\xdf\x39\xdb\x78\xee\xeb\x6c\x94\x17\xf3\xbf\x90\x94\x3b\x62\x67\xb1\xa3\x69\x1f\xd9\xfd\x13\xb6\x27\x73\x72\xd0\x2d\xff\xc1\x9d\x95\xc7\xd4\x63\xe6\x9c\xa4\x79\xa9\xb9\xeb\x84\xf6\xa1\xc8\xc5\x42\x0b\x18\x54\x8a\x79\xdd\x7e\x75\x85\x37\xb4\xff\xd5\x95\xbb\xe3\xa7\x08\xf3\x22\x55\xb5\x2c\x9c\x37\x5f\x51\xa7\x4b\xdc\xf0\x04\x86\xdb\x10\x0e\xbf\x77\x83\x3f\x02\x00\x00\xff\xff\xcc\xdb\xe6\x7f\xc4\x09\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: 2778, + uncompressedSize: 4063, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x5d\x6b\xe3\x46\x14\x7d\xcf\xaf\xb8\xf8\x25\x09\x38\x92\xb3\x34\xb0\x6b\xc8\x43\x70\x52\x76\x21\xbb\x0d\x4d\x4a\x0b\x65\x11\xd7\x33\x57\xd2\x90\xd1\x8c\x3a\xf7\xca\x8e\x29\xfd\xef\x65\xf4\x91\x78\x6d\x19\xd6\xed\xe6\x29\xb6\x35\x67\xce\x39\xf7\x9c\x19\xad\x30\x18\x5c\x5a\x82\x49\x29\x52\x67\xe4\x74\xed\x8d\x93\x09\xfc\x7d\x02\x20\x9b\x9a\xa0\xff\xbb\x06\x96\x60\x5c\x71\x02\xa0\x89\x55\x30\xb5\x18\xef\xe0\x1a\x26\x9f\x51\x54\xb9\xf4\x2f\xf0\xf1\xe9\xe9\x01\x02\xa1\xbe\xf0\xce\x6e\x60\xc0\x82\x33\x4a\x8a\x04\x22\xfe\x3c\x4d\xab\xfe\xe9\x84\x5e\xb0\xaa\x2d\x25\xca\x57\xf3\xf7\xb3\xf7\xb3\xf3\x64\x72\xf2\xcf\xc9\xc9\x1b\x21\xcf\x99\x2a\xd1\x39\xb2\xc7\xb0\xf9\xd9\xa2\x28\x0c\xb0\xf0\x4e\xd0\x38\x0a\x70\x6f\x5c\xf3\x02\x3d\x14\x88\x07\xe3\x58\xd0\x5a\xc8\x83\xaf\xe0\x8c\x25\x6e\x37\x85\x25\x09\x4e\x01\x6d\x5d\xe2\x14\x48\x17\x14\x09\x45\xf8\x1c\x1b\x2b\xfd\xae\x93\xee\xe9\x7d\xa6\x2b\x0a\x6c\xbc\xfb\x11\x4c\x7b\xa8\x6d\xa6\x67\xb9\x0f\xd0\x1b\x06\xa7\xef\x2e\x3f\x5c\x26\x57\xc9\xec\x14\x2e\x80\x89\x5a\x67\x79\x9e\xa6\xeb\xf5\x3a\xc9\x3b\xd0\x0b\x1b\xa1\x12\x1f\x8a\x34\x90\x25\x64\xe2\x74\x54\x8f\x6a\x42\x20\x27\x3b\x82\xb4\x5f\x3b\xeb\x51\x67\x75\xf0\xe2\x95\x3f\x6a\x02\x0f\xfd\x1a\x30\x0f\x7f\xdc\x01\x97\xbe\xb1\x1a\x1a\xa6\x28\x68\x00\x06\x29\x09\x9e\x29\xc4\x89\xa0\xd3\x60\x9c\x91\xa0\x13\xb8\xed\xd8\x71\x7c\xb6\x95\x35\x85\x75\x69\x54\x09\x81\xfe\x6a\x4c\x20\xee\x40\x95\xaf\x6a\x63\x49\xc3\xda\x48\x09\x2a\x6c\x6a\xf1\xc0\x4d\x5d\xfb\x20\x09\xfc\xe6\x1a\x26\x0d\x26\x07\x85\xaa\x24\x9d\x0d\x36\x1a\x06\x09\x0d\x8d\xf9\xd0\x6e\xb6\xe3\xc2\xb7\xab\xc7\x2c\x58\x7a\x6f\xf7\x0d\xf8\xbd\x24\x29\x29\xb4\x1a\x7d\x4d\x01\xc5\xb8\x02\x78\xc3\x42\xd5\xe0\x47\x54\xb1\xf4\x5e\x7a\xf5\x5b\x81\x1c\x0a\x02\x29\x32\x93\x70\x27\x22\x81\x2f\x5e\x08\xa4\x44\x69\x71\x51\x57\xc6\x41\xd5\xb0\x40\x89\x2b\x7a\x35\x96\x3a\x6b\xdf\x12\x09\xc6\x89\x7f\x03\xed\x30\x47\x1c\xc8\xd1\x32\x7d\xab\xbf\xa7\x95\x69\xc3\xcf\xc7\x04\xe0\xd6\xf0\x33\x68\x5a\x19\xd5\xce\xbc\x1b\x60\x64\x35\xe8\xac\x83\xcf\x8d\x25\x1e\xcc\x18\xbe\x1f\x35\xac\x3b\x3d\x52\x4d\xab\x94\x35\x8e\x86\x78\xf8\x71\x77\x7e\x43\xb1\xb2\xb6\x0d\x99\xa7\xea\x28\x19\x77\x0f\xbf\xde\x2d\x6e\x9e\xee\x6e\xe7\xf0\x58\x93\x32\xf9\x06\xd0\xc1\x2f\x77\x9f\xc1\x54\x58\x10\x18\x1d\xe5\xc5\x64\x23\xc3\x12\x99\x20\xd6\x74\x4b\x28\xb6\x50\x9d\x00\xac\xcc\x14\x56\xd5\x1a\x03\x65\x01\xd7\x53\x78\x21\x77\x0e\x3e\x80\xa5\x38\xbf\xa5\x45\xf7\xfc\xba\x7e\xd0\xd7\xee\x33\xa6\x78\x47\x69\xd7\xa4\x0c\x43\xc1\x63\x0a\xad\x61\x39\xeb\x64\x9e\xef\xeb\xbc\xd1\xda\xc4\xff\xd1\xbe\x36\x32\x14\x4d\x45\xae\xab\x61\x1d\xfc\xca\x68\x02\x94\xdd\xd0\x42\xda\x70\x48\xb9\xc4\x40\xa9\xa7\x2a\x2d\x42\xb3\x4c\x54\x5e\x8c\x10\xfe\xf3\xeb\x28\x61\xe5\x1d\x7b\x4b\xc7\x73\x7e\xda\x3a\x3e\xb6\xc9\x2a\xef\x72\x53\x34\x81\x5a\x1b\x7b\xf8\xff\x49\x7d\xd2\xc3\x5c\x8b\x6c\x66\x93\x29\x6c\x7f\x7e\x9c\x4d\xbe\x8e\x97\x46\x7c\xc6\x15\x5a\x4b\x2c\x07\x0b\x34\x7e\x7c\x7c\xea\xdb\x70\xe8\x7e\x10\xdf\x8a\x1b\xd0\x21\xa2\x7f\x5f\xa1\x99\xcb\xec\x99\x36\xff\x21\x23\x8f\x8f\x1f\xa1\x6e\x96\xd6\x28\x88\x00\x6d\x50\x1b\xa6\x00\xa7\xca\x07\x3a\xdd\xbd\xba\x4d\xe1\xda\x48\x65\xca\xaa\xac\x9b\xc9\x31\xcd\xfb\xd4\x2f\x87\xc5\xfd\x02\xd8\x99\xba\xa6\x6e\xbc\xc6\x29\xdb\xe8\xd8\xaf\x61\xbe\xed\xb4\xdb\x9e\xed\x71\xe8\x6c\xa4\xd0\x92\x18\x50\x8e\x97\x7e\x6f\x58\xc0\xe7\x7b\x63\x58\xb4\x9b\xbf\xd2\xfb\x8e\xd0\x3b\xaf\x29\x73\x58\x8d\xe6\xfd\x90\x17\x5f\xb0\xa2\xb8\x7d\xd4\x1b\x01\xd2\x0a\x55\x69\x1c\xed\xca\x6d\xc1\x2b\x54\x47\xbd\xb9\xdd\x2c\x00\xb5\x0e\xc4\x0c\x46\x93\x13\x93\x6f\xe2\xc9\xbb\xbb\x57\x7f\x84\x5d\xbd\x9b\x5f\xfd\x34\x9f\xcd\xe6\x78\x39\xff\xa0\xe6\x48\x7b\xaf\x6c\x6b\x53\x53\x86\xaf\xe7\x49\x1b\xfc\x51\xcb\x0f\x5c\x9c\xa6\x26\x06\x74\x1b\x78\xc3\x68\xe3\xcd\x80\x22\xed\x6d\x3c\x8d\xd7\x3a\x93\xb4\x2d\x08\x0d\x1d\xce\xfd\xbf\x01\x00\x00\xff\xff\xcd\xe5\xc3\xff\xda\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x6d\x6f\xdb\xbc\x15\xfd\x9e\x5f\x71\x61\x04\xb1\x03\xf8\x25\x79\xb0\x02\xad\x8b\x7c\xc8\x92\x14\x29\xd0\xa6\xd9\x92\x61\x05\x86\x42\xb8\x26\xaf\x24\x22\x14\xc9\xf1\x52\x7e\xc1\xd0\xff\x3e\x90\x92\x12\xc7\x56\xb0\x7a\x4f\xf3\xc9\x8e\xc4\xc3\x73\xce\x7d\xf5\x12\xbd\xc2\x85\x26\x18\x94\x21\xb8\x8c\x8c\x74\x56\x99\x30\x80\xff\x1c\x01\x84\x8d\x23\x68\xff\x2e\x80\x83\x57\xa6\x38\x02\x90\xc4\xc2\x2b\x17\x94\x35\x70\x01\x83\xaf\x18\x44\xb9\xb0\x6b\xb8\x7d\x7c\xbc\x07\x4f\x28\x27\xd6\xe8\x0d\x74\x58\x30\xa2\x69\x31\x85\x88\x3f\x9f\xcd\xaa\xf6\xed\x29\xad\xb1\x72\x9a\xa6\xc2\x56\xf3\xf7\x67\xef\xcf\x4e\xa7\x83\xa3\x9f\x47\x47\x2f\x84\x2c\x67\xa2\x44\x63\x48\x1f\xc2\xe6\x93\xc6\x20\xd0\xc3\x95\x35\x01\x95\x21\x0f\x5f\x94\xa9\xd7\xd0\x42\x41\xb0\xa0\x0c\x07\xd4\x1a\x72\x6f\x2b\x18\x71\x88\xd7\x8d\x61\x41\x01\xc7\x80\xda\x95\x38\x06\x92\x05\x45\x42\x11\x3e\xc7\x5a\x87\xf6\xd6\x41\xf3\xf6\x3e\xd3\x25\x79\x56\xd6\xfc\x0e\xa6\x2d\xd4\x36\xd3\x51\x6e\x3d\xb4\x86\xc1\xf0\x8f\xf3\x0f\xe7\xd3\x77\xd3\xb3\x21\x4c\x80\x89\x92\xb3\x3c\x9f\xcd\x56\xab\xd5\x34\x6f\x40\x27\x3a\x42\x4d\xad\x2f\x66\x9e\x34\x21\x13\xcf\x7a\xf5\x88\xda\x7b\x32\x61\x47\x90\xb4\x2b\xa3\x2d\xca\xcc\x79\x1b\xac\xb0\x07\x45\xe0\xbe\x3d\x03\xea\xfe\xfb\x0d\x70\x69\x6b\x2d\xa1\x66\x8a\x82\x3a\x60\x08\x25\xc1\x13\xf9\x18\x11\x34\x12\x94\x51\xc1\xcb\x29\x5c\x37\xec\x38\xbe\x9b\x64\x8d\x61\x55\x2a\x51\x82\xa7\x7f\xd7\xca\x13\x37\xa0\xc2\x56\x4e\x69\x92\xb0\x52\xa1\x04\xe1\x37\x2e\x58\xe0\xda\x39\xeb\xc3\x14\xfe\x61\x6a\x26\x09\x2a\x07\x81\xa2\x24\x99\x75\x36\x2a\x86\xe0\x6b\xea\xf3\x21\x5d\xb6\xe3\xc2\xeb\xd3\x7d\x16\x2c\xac\xd5\xfb\x06\xfc\xb3\xa4\x50\x92\x4f\x1a\xad\x23\x8f\x41\x99\x02\x78\xc3\x81\xaa\xce\x8f\xa8\x62\x61\x6d\x68\xd5\x6f\x25\x64\x57\x20\x30\x43\x66\x0a\xdc\x88\x98\xc2\x9d\x0d\x04\xa1\xc4\x90\x70\x51\x56\xca\x40\x55\x73\x80\x12\x97\xf4\x6c\x2c\x35\xd6\xbe\x64\x24\x28\x13\xec\x0b\x68\x83\xd9\xe3\x40\x8e\x9a\xe9\xb5\xfe\x96\x56\x26\x15\x3f\x1d\x92\x00\xd7\x8a\x9f\x40\xd2\x52\x89\x14\xf3\x26\x80\x91\x55\xa7\xd3\x79\x9b\x2b\x4d\xdc\x99\xd1\xfd\xbf\xd7\xb0\xa6\x7b\xcc\x24\x2d\x67\x2c\xb1\x37\x89\xbb\x87\xbb\xf1\xeb\x0a\x2b\x4b\xd5\x90\x59\xaa\x0e\x92\x71\x73\xff\xf7\x9b\xab\xcb\xc7\x9b\xeb\x39\x3c\x38\x12\x2a\xdf\x00\x1a\xf8\x76\xf3\x15\x54\x85\x05\x81\x92\x51\x5e\xcc\x6c\x64\x58\x20\x13\xc4\x32\xdd\x12\x8a\x09\xaa\x11\x80\x95\x1a\xc3\xb2\x5a\xa1\xa7\xcc\xe3\x6a\x0c\x6b\x32\xa7\x60\x3d\x68\x8a\xf1\x5b\x68\x34\x4f\xcf\xe7\x3b\x7d\xe9\x9e\x3e\xc5\x3b\x4a\x9b\x4a\xca\xd0\x17\xdc\xa7\x50\x2b\x0e\xa3\x46\xe6\xe9\xbe\xce\x4b\x29\x55\xfc\x8c\xfa\xb9\x22\x7d\x51\x57\x64\x9a\x32\x74\xde\x2e\x95\x24\xc0\xb0\x9b\xb4\x30\xab\xd9\xcf\xb8\x44\x4f\x33\x4b\xd5\xac\xf0\xf5\x62\x2a\xf2\xa2\x87\xf0\xbf\x7e\xf4\x12\x16\xd6\xb0\xd5\x74\x38\xe7\xc7\xad\xf6\xb1\x4d\x56\x58\x93\xab\xa2\xf6\x94\x6c\x6c\xe1\xff\x24\xf5\x41\x0b\x73\x11\xc2\xe6\x6c\x30\x86\xed\xef\x0f\x67\x83\x1f\xfd\x45\x13\x6c\xc6\x15\x6a\x4d\x1c\xde\x2c\xa0\xfe\xf6\xf1\xb9\xad\x86\xb7\xe6\x43\xb0\x49\x5c\x87\x0e\x11\xfd\xd7\x0a\x9a\xb9\xcc\x9e\x68\xf3\x7f\xe4\xc8\xc3\xc3\x2d\xb8\x7a\xa1\x95\x80\x08\x90\x12\xb5\x66\xf2\x30\x14\xd6\xd3\x70\x77\x74\xab\xc2\xa4\x94\xca\x84\x16\x59\x13\x93\x43\x2a\xef\x73\x7b\x1c\xae\xbe\x5c\x01\x1b\xe5\x1c\x35\xe1\x55\x46\xe8\x5a\xc6\xfa\xea\xe2\x9b\xa2\x9d\xea\x6c\x8f\x43\x63\x23\xf9\x44\xa2\x43\x39\x5c\xfa\x17\xc5\x01\x6c\xbe\x17\x86\xab\x74\xf9\x33\xbd\x5f\x48\x7a\x63\x25\x65\x06\xab\xde\x7c\x7f\xcb\x8b\x3b\xac\x28\x5e\x1f\xf5\x46\x80\x59\x85\xa2\x54\x86\x76\xe5\x26\xf0\x0a\xc5\x41\x9b\xdb\xe5\x15\xa0\x94\x9e\x98\x41\x49\x32\x41\xe5\x9b\xd8\x79\x77\xef\x6a\x5b\xd8\xbb\x3f\xe6\xef\xfe\x32\x3f\x3b\x9b\xe3\xf9\xfc\x83\x98\x23\xed\xad\x6c\x2b\xe5\x28\xc3\xe7\x7e\x92\x12\xbf\xd7\xf2\x37\x06\xa7\x72\xc4\x80\x66\x03\x2f\x18\x29\xbd\x19\x30\x84\x34\x8d\xc7\x71\xac\x33\x85\x54\x05\xbe\xa6\x5f\x1b\x64\x85\xb1\x9e\xd2\x36\x59\x50\xcb\x67\x7f\x66\x9b\x6d\xdc\x31\x34\x87\x38\x99\xe1\x29\x75\xc1\x38\x4f\xa3\x3f\x5b\xe1\x80\x51\x6d\x74\xf4\x2f\xfe\x63\xdb\xcf\x5c\x63\x01\x71\xca\xc5\xad\xc3\x53\x65\x97\x94\xc6\x45\x6e\xbd\x20\xc0\xd4\x90\xda\x14\x6d\x66\xda\x1b\x06\xfd\x0f\x69\x69\x9e\x67\x52\xf9\x5e\x55\xf7\x18\xca\x78\x29\x82\x54\x9e\x44\xb0\x7e\x03\xab\x92\x3c\x41\x41\x26\xce\x59\x92\xed\x46\xd0\x8d\xe2\x05\x81\xd3\x28\x48\xc2\xa8\x1d\x9f\x0c\x4c\xc2\x53\xe0\xd3\x7d\x96\x6d\x62\xed\x27\xa2\xb4\x15\xaa\x83\xb6\xe1\xbb\x68\xe6\xa7\xbf\x5d\xdf\xa5\x64\x4b\xde\x9e\x6f\xff\x46\xd8\xcb\x35\xb7\xa6\x4c\xd8\xaa\x42\x23\x7b\x53\xec\xad\x8b\xb8\x24\xad\xa1\x3b\x19\xdd\xa1\x35\x89\x3a\x34\xd3\x3b\x86\x65\xe4\xe9\x74\x3b\xde\xe3\x66\xcd\x44\x21\x52\xa0\x9b\xf6\xdb\x11\x61\x38\xae\x50\xc0\x68\x27\xfe\xa7\x63\x38\x8e\xa5\xde\x3c\x48\x99\x12\xbf\x9e\x8e\xd3\x00\x3a\x6e\xfc\x69\x1e\xb6\x9f\xdb\xc7\xb1\xd2\xc6\x30\x5c\x54\xe2\x62\x51\x89\x49\xfb\xe6\x47\x50\xae\x52\xc1\x5a\x0d\x93\x5b\x38\x5e\x54\x02\x9c\x5d\x91\x07\x9b\xe7\x3d\xcf\x44\x89\xcc\x8a\xd3\xc4\x93\xb4\x04\xb7\xa6\xb7\x11\xcc\xb0\x6f\xc3\x20\x51\x5a\x18\x6e\x6c\xdd\x2c\x99\xaf\x3c\x79\xc9\xfe\xc5\x26\xdd\x11\x8b\x62\xa9\xb0\x59\xce\xd3\x16\xdb\xfe\xda\xfb\x7a\xf9\x78\x75\xfb\xd7\x6f\xdf\x67\xf1\xad\xa9\x72\x6b\x1a\x7e\x04\x5a\xab\x00\xe7\xfd\xed\x3a\x73\x71\x3f\xa2\xf8\x7a\x26\xaa\xdf\x15\xd9\x96\xf2\xb3\x00\x92\x50\x5a\x0e\x80\x79\x20\xff\x7a\x5b\xcb\x95\x51\x5c\xc6\xba\x30\xb1\x1a\x72\xeb\x63\xf9\x47\x3e\x5d\x6c\xa4\x15\x4f\xe4\xc1\xd7\x06\x26\x13\xe7\xd5\x52\x69\x2a\x48\xc2\x64\x62\x28\x34\xb8\x93\x89\xaf\x40\xd2\x42\xa1\x01\x2e\x61\x22\x60\x88\x2e\x40\xed\x24\x06\x82\x93\x13\x88\xdf\xba\xad\x77\xb2\x79\x09\xcd\xc9\xc9\xcb\xe7\xdd\x20\xc6\x46\x08\x36\xa9\xe5\x0b\x17\xb7\x7b\x0e\x64\x42\x6f\xf4\x9a\xd6\xf8\xf3\xe8\xbf\x01\x00\x00\xff\xff\xa4\xc1\x55\xf5\xdf\x0f\x00\x00"), }, "/terraform-modules/matchbox-flatcar/versions.tf": &vfsgen۰CompressedFileInfo{ name: "versions.tf", @@ -8773,6 +8787,8 @@ var vfsgenAssets = func() http.FileSystem { 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/pxe-helper.sh.tmpl"].(os.FileInfo), + fs["/terraform-modules/matchbox-flatcar/ssh.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), diff --git a/pkg/platform/baremetal/baremetal.go b/pkg/platform/baremetal/baremetal.go index b94eac909..9091bbd6d 100644 --- a/pkg/platform/baremetal/baremetal.go +++ b/pkg/platform/baremetal/baremetal.go @@ -50,6 +50,8 @@ type config struct { NetworkMTU int `hcl:"network_mtu,optional"` OSChannel string `hcl:"os_channel,optional"` OSVersion string `hcl:"os_version,optional"` + PXECommands string `hcl:"pxe_commands,optional"` + InstallPreBootCmds string `hcl:"install_pre_reboot_cmds,optional"` SSHPubKeys []string `hcl:"ssh_pubkeys"` WorkerNames []string `hcl:"worker_names"` WorkerMacs []string `hcl:"worker_macs"` @@ -234,6 +236,8 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { NetworkMTU int OSChannel string OSVersion string + PXECommands string + InstallPreBootCmds string SSHPublicKeys string WorkerNames string WorkerMacs string @@ -270,6 +274,8 @@ func createTerraformConfigFile(cfg *config, terraformPath string) error { NetworkMTU: cfg.NetworkMTU, OSChannel: cfg.OSChannel, OSVersion: cfg.OSVersion, + PXECommands: cfg.PXECommands, + InstallPreBootCmds: cfg.InstallPreBootCmds, SSHPublicKeys: string(keyListBytes), WorkerNames: string(workerNames), WorkerMacs: string(workerMacs), diff --git a/pkg/platform/baremetal/template.go b/pkg/platform/baremetal/template.go index 2ab102ff0..0e4143cf4 100644 --- a/pkg/platform/baremetal/template.go +++ b/pkg/platform/baremetal/template.go @@ -108,6 +108,18 @@ module "bare-metal-{{.ClusterName}}" { ] {{- end }} + {{- if .PXECommands }} + pxe_commands = <