diff --git a/assets/components/contour/templates/02-service-envoy.yaml b/assets/components/contour/templates/02-service-envoy.yaml index cff720920..a7ba63a89 100644 --- a/assets/components/contour/templates/02-service-envoy.yaml +++ b/assets/components/contour/templates/02-service-envoy.yaml @@ -19,12 +19,17 @@ spec: externalTrafficPolicy: Local ports: - port: 80 + {{- if eq .Values.envoy.serviceType "NodePort" }} + nodePort: 30080 + {{- end }} name: http protocol: TCP - port: 443 + {{- if eq .Values.envoy.serviceType "NodePort" }} + nodePort: 30443 + {{- end }} name: https protocol: TCP selector: app: envoy - type: LoadBalancer - + type: {{ .Values.envoy.serviceType }} diff --git a/assets/components/contour/templates/03-envoy.yaml b/assets/components/contour/templates/03-envoy.yaml index f441e3fce..3a6ddacb4 100644 --- a/assets/components/contour/templates/03-envoy.yaml +++ b/assets/components/contour/templates/03-envoy.yaml @@ -101,11 +101,9 @@ spec: fieldPath: metadata.name ports: - containerPort: 80 - hostPort: 80 name: http protocol: TCP - containerPort: 443 - hostPort: 443 name: https protocol: TCP readinessProbe: diff --git a/assets/components/contour/values.yaml b/assets/components/contour/values.yaml index 7baf2987e..e431ff579 100644 --- a/assets/components/contour/values.yaml +++ b/assets/components/contour/values.yaml @@ -10,6 +10,7 @@ contour: envoy: image: docker.io/envoyproxy/envoy tag: v1.13.1 + serviceType: nodeAffinity: {} # nodeAffinity: diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/nlb.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/nlb.tf index 408bcd3b7..03f1ede0e 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/nlb.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/nlb.tf @@ -36,33 +36,8 @@ resource "aws_lb_listener" "apiserver-https" { } } -# Forward HTTP ingress traffic to workers -resource "aws_lb_listener" "ingress-http" { - load_balancer_arn = aws_lb.nlb.arn - protocol = "TCP" - port = 80 - - default_action { - type = "forward" - target_group_arn = module.workers.target_group_http - } -} - -# Forward HTTPS ingress traffic to workers -resource "aws_lb_listener" "ingress-https" { - load_balancer_arn = aws_lb.nlb.arn - protocol = "TCP" - port = 443 - - default_action { - type = "forward" - target_group_arn = module.workers.target_group_https - } -} - # Target group of controllers resource "aws_lb_target_group" "controllers" { - name = "${var.cluster_name}-controllers" vpc_id = aws_vpc.network.id target_type = "instance" @@ -81,6 +56,10 @@ resource "aws_lb_target_group" "controllers" { # Interval between health checks required to be 10 or 30 interval = 10 } + + tags = { + ClusterName = var.cluster_name + } } # Attach controller instances to apiserver NLB diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/outputs.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/outputs.tf index 4ba0b5680..0b15aacdc 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/outputs.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/outputs.tf @@ -37,19 +37,9 @@ output "kubeconfig" { # Outputs for custom load balancing -output "nlb_id" { +output "nlb_arn" { description = "ARN of the Network Load Balancer" - value = aws_lb.nlb.id -} - -output "worker_target_group_http" { - description = "ARN of a target group of workers for HTTP traffic" - value = module.workers.target_group_http -} - -output "worker_target_group_https" { - description = "ARN of a target group of workers for HTTPS traffic" - value = module.workers.target_group_https + value = aws_lb.nlb.arn } # values.yaml content for all deployed charts. diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/security.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/security.tf index 5f3d9b826..3c2d6063d 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/security.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/security.tf @@ -196,8 +196,8 @@ resource "aws_security_group_rule" "worker-http" { type = "ingress" protocol = "tcp" - from_port = 80 - to_port = 80 + from_port = 30080 + to_port = 30080 cidr_blocks = ["0.0.0.0/0"] } @@ -206,8 +206,8 @@ resource "aws_security_group_rule" "worker-https" { type = "ingress" protocol = "tcp" - from_port = 443 - to_port = 443 + from_port = 30443 + to_port = 30443 cidr_blocks = ["0.0.0.0/0"] } @@ -233,16 +233,6 @@ resource "aws_security_group_rule" "worker-kube-proxy" { self = true } -resource "aws_security_group_rule" "ingress-health" { - security_group_id = aws_security_group.worker.id - - type = "ingress" - protocol = "tcp" - from_port = 10254 - to_port = 10254 - cidr_blocks = ["0.0.0.0/0"] -} - # Allow apiserver to access kubelets for exec, log, port-forward resource "aws_security_group_rule" "worker-kubelet" { security_group_id = aws_security_group.worker.id diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf index afec8aae3..58a4caaa0 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf @@ -77,7 +77,6 @@ resource "null_resource" "copy-controller-secrets" { resource "null_resource" "bootkube-start" { depends_on = [ module.bootkube, - module.workers, aws_route53_record.apiserver, null_resource.copy-controller-secrets, ] diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf index 78997e5e9..4be2d0974 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf @@ -29,12 +29,6 @@ variable "controller_count" { description = "Number of controllers (i.e. masters)" } -variable "worker_count" { - type = number - default = 1 - description = "Number of workers" -} - variable "controller_type" { type = string # When doing the upgrades of controlplane on t3.small instance type when @@ -47,12 +41,6 @@ variable "controller_type" { description = "EC2 instance type for controllers" } -variable "worker_type" { - type = string - default = "t3.small" - description = "EC2 instance type for workers" -} - variable "os_name" { type = string default = "flatcar" @@ -89,30 +77,12 @@ variable "disk_iops" { description = "IOPS of the EBS volume (e.g. 100)" } -variable "worker_price" { - type = string - default = "" - description = "Spot price in USD for autoscaling group spot instances. Leave as default empty string for autoscaling group to use on-demand instances. Note, switching in-place from spot to on-demand is not possible: https://github.com/terraform-providers/terraform-provider-aws/issues/4320" -} - -variable "worker_target_groups" { - type = list(string) - description = "Additional target group ARNs to which worker instances should be added" - default = [] -} - variable "controller_clc_snippets" { type = list(string) description = "Controller Container Linux Config snippets" default = [] } -variable "worker_clc_snippets" { - type = list(string) - description = "Worker Container Linux Config snippets" - default = [] -} - variable "tags" { type = map default = { diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers.tf deleted file mode 100644 index 63990eb61..000000000 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers.tf +++ /dev/null @@ -1,25 +0,0 @@ -module "workers" { - source = "./workers" - name = var.cluster_name - - # AWS - vpc_id = aws_vpc.network.id - subnet_ids = aws_subnet.public.*.id - security_groups = [aws_security_group.worker.id] - worker_count = var.worker_count - instance_type = var.worker_type - os_name = var.os_name - os_channel = var.os_channel - os_version = var.os_version - disk_size = var.disk_size - spot_price = var.worker_price - target_groups = var.worker_target_groups - tags = var.tags - - # configuration - kubeconfig = module.bootkube.kubeconfig-kubelet - ssh_keys = var.ssh_keys - service_cidr = var.service_cidr - cluster_domain_suffix = var.cluster_domain_suffix - clc_snippets = var.worker_clc_snippets -} diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/ingress.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/ingress.tf index fd78e5399..10ad5c8ac 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/ingress.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/ingress.tf @@ -1,18 +1,35 @@ -# Target groups of instances for use with load balancers +resource "aws_lb_listener" "ingress-http" { + load_balancer_arn = var.lb_arn + protocol = "TCP" + port = var.lb_http_port + + default_action { + type = "forward" + target_group_arn = aws_lb_target_group.workers-http.arn + } +} + +resource "aws_lb_listener" "ingress-https" { + load_balancer_arn = var.lb_arn + protocol = "TCP" + port = var.lb_https_port + + default_action { + type = "forward" + target_group_arn = aws_lb_target_group.workers-https.arn + } +} resource "aws_lb_target_group" "workers-http" { - name = "${var.name}-workers-http" vpc_id = var.vpc_id target_type = "instance" protocol = "TCP" - port = 80 + port = 30080 - # HTTP health check for ingress health_check { - protocol = "HTTP" - port = 10254 - path = "/healthz" + protocol = "TCP" + port = 30080 # NLBs required to use same healthy and unhealthy thresholds healthy_threshold = 3 @@ -21,21 +38,23 @@ resource "aws_lb_target_group" "workers-http" { # Interval between health checks required to be 10 or 30 interval = 10 } + + tags = { + ClusterName = var.cluster_name + PoolName = var.pool_name + } } resource "aws_lb_target_group" "workers-https" { - name = "${var.name}-workers-https" vpc_id = var.vpc_id target_type = "instance" protocol = "TCP" - port = 443 + port = 30443 - # HTTP health check for ingress health_check { - protocol = "HTTP" - port = 10254 - path = "/healthz" + protocol = "TCP" + port = 30443 # NLBs required to use same healthy and unhealthy thresholds healthy_threshold = 3 @@ -44,4 +63,9 @@ resource "aws_lb_target_group" "workers-https" { # Interval between health checks required to be 10 or 30 interval = 10 } + + tags = { + ClusterName = var.cluster_name + PoolName = var.pool_name + } } diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/variables.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/variables.tf index 90ea71eb7..6b0269f65 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/variables.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/variables.tf @@ -1,4 +1,9 @@ -variable "name" { +variable "cluster_name" { + type = string + description = "Cluster name (prepended to pool name)" +} + +variable "pool_name" { type = string description = "Unique name for the worker pool" } @@ -125,3 +130,19 @@ variable "cluster_domain_suffix" { type = string default = "cluster.local" } + +variable "lb_arn" { + description = "ARN of the load balancer on which to create listeners for this worker pool" +} + +variable "lb_http_port" { + description = "Port the load balancer should listen on for HTTP connections" + type = number + default = 80 +} + +variable "lb_https_port" { + description = "Port the load balancer should listen on for HTTPS connections" + type = number + default = 443 +} diff --git a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf index c5317a5ec..266686210 100644 --- a/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf +++ b/assets/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf @@ -1,6 +1,6 @@ # Workers AutoScaling Group resource "aws_autoscaling_group" "workers" { - name = "${var.name}-worker" + name = "${var.cluster_name}-${var.pool_name}-workers" # count desired_capacity = var.worker_count @@ -37,7 +37,7 @@ resource "aws_autoscaling_group" "workers" { [ { key = "Name" - value = "${var.name}-worker" + value = "${var.cluster_name}-${var.pool_name}-worker" propagate_at_launch = true }, ], @@ -54,6 +54,7 @@ resource "aws_autoscaling_group" "workers" { # Worker template resource "aws_launch_configuration" "worker" { + name_prefix = "${var.cluster_name}-${var.pool_name}-" image_id = local.ami_id instance_type = var.instance_type spot_price = var.spot_price diff --git a/ci/aws/aws-cluster.lokocfg.envsubst b/ci/aws/aws-cluster.lokocfg.envsubst index f95c1b232..c1241ba07 100644 --- a/ci/aws/aws-cluster.lokocfg.envsubst +++ b/ci/aws/aws-cluster.lokocfg.envsubst @@ -16,7 +16,7 @@ cluster "aws" { os_channel = var.os_channel ssh_pubkeys = ["$PUB_KEY"] - worker_pool "$CLUSTER_ID-wp" { + worker_pool "wp" { count = 2 ssh_pubkeys = ["$PUB_KEY"] disk_size = 30 @@ -49,6 +49,7 @@ component "prometheus-operator" { component "contour" { ingress_hosts = ["dex.$CLUSTER_ID.$AWS_DNS_ZONE", "gangway.$CLUSTER_ID.$AWS_DNS_ZONE"] enable_monitoring = true + service_type = "NodePort" } component "metrics-server" {} diff --git a/docs/configuration-reference/components/contour.md b/docs/configuration-reference/components/contour.md index 5cce97b85..0029f5352 100644 --- a/docs/configuration-reference/components/contour.md +++ b/docs/configuration-reference/components/contour.md @@ -35,6 +35,7 @@ component "contour" { # Optional arguments enable_monitoring = false ingress_hosts = ["*.example.lokomotive.org"] + service_type = "NodePort" node_affinity { key = "node-role.kubernetes.io/node" @@ -66,12 +67,13 @@ Table of all the arguments accepted by the component. Example: -| Argument | Description | Default | Required | -|---------------------|---------------------------------------------------------------------------------------------------------|:-------:|:--------:| -| `enable_monitoring` | Create Prometheus Operator configs to scrape Contour and Envoy metrics. Also deploys Grafana Dashboard. | false | false | -| `ingress_hosts` | [ExternalDNS component](external-dns.md) creates DNS entries from the values provided. | "" | false | -| `node_affinity` | Node affinity for deploying the operator pod and envoy daemonset. | - | false | -| `toleration` | Tolerations that the operator and envoy pods will tolerate. | - | false | +| Argument | Description | Default | Required | +|---------------------|---------------------------------------------------------------------------------------------------------|:--------------:|:--------:| +| `enable_monitoring` | Create Prometheus Operator configs to scrape Contour and Envoy metrics. Also deploys Grafana Dashboard. | false | false | +| `ingress_hosts` | [ExternalDNS component](external-dns.md) creates DNS entries from the values provided. | "" | false | +| `node_affinity` | Node affinity for deploying the operator pod and envoy daemonset. | - | false | +| `service_type` | The type of Kubernetes service used to expose Envoy. | "LoadBalancer" | false | +| `toleration` | Tolerations that the operator and envoy pods will tolerate. | - | false | ## Applying diff --git a/docs/configuration-reference/platforms/aws.md b/docs/configuration-reference/platforms/aws.md index 027f25a80..bfbad4548 100644 --- a/docs/configuration-reference/platforms/aws.md +++ b/docs/configuration-reference/platforms/aws.md @@ -49,6 +49,8 @@ variable "worker_disk_size" {} variable "worker_disk_type" {} variable "worker_disk_iops" {} variable "worker_spot_price" {} +variable "lb_http_port" {} +variable "lb_https_port" {} variable "target_groups" {} backend "s3" { @@ -134,6 +136,10 @@ cluster "aws" { spot_price = var.worker_spot_price + lb_http_port = var.lb_http_port + + lb_https_port = var.lb_https_port + target_groups = var.target_groups clc_snippets = var.worker_clc_snippets @@ -208,6 +214,8 @@ worker_pool "my-worker-pool" { | `worker_pool.disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | false | | `worker_pool.spot_price` | Spot price in USD for autoscaling group spot instances. Leave as empty string for autoscaling group to use on-demand instances. Switching in-place from spot to on-demand is not possible. | "" | false | | `worker_pool.target_groups` | Additional target group ARNs to which worker instances should be added. | [] | false | +| `worker_pool.lb_http_port` | Port the load balancer should listen on for HTTP connections. | 80 | false | +| `worker_pool.lb_https_port` | Port the load balancer should listen on for HTTPS connections. | 443 | false | | `worker_pool.clc_snippets` | CWorker Flatcar Container Linux Config snippets. | [] | false | | `worker_pool.tags` | Optional details to tag on AWS resources. | - | false | diff --git a/pkg/assets/generated_assets.go b/pkg/assets/generated_assets.go index 71d86fd31..610934531 100644 --- a/pkg/assets/generated_assets.go +++ b/pkg/assets/generated_assets.go @@ -528,9 +528,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/templates/02-service-envoy.yaml": &vfsgen۰CompressedFileInfo{ name: "02-service-envoy.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 904, + uncompressedSize: 1100, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\x6f\xdb\x3e\x0c\xc5\xef\xfe\x14\x44\xfe\x87\x5e\xfe\x76\x37\xac\x87\xc1\xb7\xb5\x18\xd0\x01\x05\x66\x2c\x46\xb7\x1d\x69\x89\x8e\xd5\xc8\xa4\x20\x31\x49\x83\xa2\xdf\x7d\x90\xed\xa6\x59\xb7\xdd\x6c\x99\xfc\xbd\xf7\x28\xba\x2c\xcb\x02\x83\xbb\xa7\x98\x9c\x70\x0d\xfb\xf7\xc5\xd6\xb1\xad\x61\x4d\x71\xef\x0c\x15\x23\x29\x5a\x54\xac\x0b\x00\xc6\x91\x6a\x20\xde\xcb\x71\x79\x4b\x01\x0d\xd5\x10\xa2\x3c\x90\x51\x23\xac\xb2\x8b\x05\x00\x32\x8b\xa2\x3a\xe1\x94\x1b\x01\xfe\x83\x76\x70\xe9\xec\x1c\xc2\x4e\x13\xe8\x40\xf0\xe9\xfb\x1a\x3e\xdf\x5d\x83\x63\x15\x58\xb5\x37\xcd\x0a\x46\xb1\x04\x49\x40\x07\x54\x70\x0a\x56\x28\x01\x8b\x2e\x28\x2b\x70\xdb\xb6\x0d\x30\x6d\x44\xdd\x8c\xeb\x25\x4e\x87\x6b\x30\xc2\x4c\x66\xd2\x06\xd4\x49\x22\xe3\xc9\x6e\xa8\x3a\x79\x21\xb0\x72\xe0\xe4\x2c\x81\xf4\xa0\xd9\x9b\x9b\xed\x44\x1a\x45\x09\xbe\x34\x80\xd6\x46\x4a\x29\x17\xa0\xf7\xbf\x71\x0f\xce\xfb\x85\x85\x21\x10\x46\x50\x81\x8e\x26\x80\x63\xa5\xc8\xe8\xcf\xfb\x17\x13\x15\xac\x29\x2b\x9b\x74\x19\xa2\x3c\x1e\xcb\x10\x45\xa5\x1a\xed\xc2\xca\x21\x1c\xf7\x12\xc7\x39\x14\x76\xb2\x53\x20\xc6\xce\x3b\xde\x4c\x94\xe6\xdb\xd7\x1f\x3f\x61\xea\x33\xe2\x41\xf8\x14\x50\x05\x22\x19\xd9\x53\x5c\x68\xf9\x83\x44\xb7\x71\xd9\xcc\x1f\xb1\xe6\x59\xa4\xf9\x9a\xab\x8e\x14\xab\xed\xae\xa3\xc8\xa4\x94\x2a\x27\x97\x78\x48\xa5\x17\xb4\x65\x87\x1e\xd9\x50\x2c\x3b\x34\x5b\x62\x5b\xbe\xa8\xd7\xa0\x26\x4c\x98\xa7\xa7\x12\x5c\x0f\xd5\x3d\xfa\x5d\xee\xe6\x4d\x96\xb8\x95\xa4\x09\x9e\x9f\xa7\x12\x7a\x9c\xc7\x52\x5a\x4e\x15\xfa\x30\xbc\xd5\x1b\x24\xe9\xbc\x61\x17\x19\xf7\x20\x8e\x61\xf5\xff\xea\x5f\xd0\x8b\x93\x30\xb1\xcd\x22\x29\x90\xc9\xcb\xf6\x22\xd4\x46\xec\x7b\x67\x1a\xf1\xce\x1c\x6b\xb8\x13\x83\xf9\xce\x82\x44\x9d\x96\xb2\x9c\x1e\x6b\xf8\xf8\x6e\x22\xcd\xd2\x83\xea\x9c\xe8\x35\x63\x7b\xd3\x9c\x55\x5f\x5d\x7d\x78\x53\x9e\xfe\x5a\x9f\xc8\x93\x51\x89\xf3\xfa\x63\x08\xaf\x3f\x8e\x1e\x03\x65\x3f\x68\xaf\x97\xc9\x16\xc5\xaf\x00\x00\x00\xff\xff\x81\xc9\x62\xa1\x88\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x41\x6f\x13\x31\x10\x85\xef\xf9\x15\xa3\x70\xe8\x85\xdd\x16\xb5\x07\xb4\x37\xa8\x90\x8a\x54\xc1\x8a\xac\x0a\x1c\x67\xed\x49\xe2\xd6\x99\x31\xf6\x24\x6d\x14\xe5\xbf\x23\x7b\x37\x69\x80\xc2\x89\x5b\xe2\x9d\xf9\xde\x7b\xe3\x71\x55\x55\x13\x0c\xee\x8e\x62\x72\xc2\x0d\x6c\xde\x4c\x1e\x1c\xdb\x06\x66\x14\x37\xce\xd0\x64\x45\x8a\x16\x15\x9b\x09\x00\xe3\x8a\x1a\x20\xde\xc8\x76\xfc\x97\x02\x1a\x6a\x20\x44\xb9\x27\xa3\x46\x58\x65\x1d\x27\x00\xc8\x2c\x8a\xea\x84\x53\x6e\x04\x78\x05\xdd\xd2\xa5\x93\x73\x08\x6b\x4d\xa0\x4b\x82\x77\x5f\x67\xf0\xe1\xf6\x3d\x38\x56\x81\x69\x77\xdd\x4e\x61\x25\x96\x20\x09\xe8\x12\x15\x9c\x82\x15\x4a\xc0\xa2\x23\xca\x0a\xdc\x74\x5d\x0b\x4c\x0b\x51\x37\xe0\xe6\x12\xcb\xe1\x0c\x8c\x30\x93\x29\xda\x80\x5a\x24\x32\x9e\xec\x82\xea\xa3\x17\x02\x2b\x8f\x9c\x9c\x25\x90\x39\x68\xf6\xe6\x06\x3b\x91\x56\xa2\x04\x1f\x5b\x40\x6b\x23\xa5\x94\x0b\xd0\xfb\x5f\xb8\x8f\xce\xfb\x91\x85\x21\x10\x46\x50\x81\x9e\x0a\xc0\xb1\x52\x64\xf4\xa7\xfd\xa3\x89\x1a\x66\x94\x95\x4d\x3a\x0f\x51\x9e\xb6\x55\x88\xa2\x52\xaf\xec\xc8\xca\x21\x1c\xcf\x25\xae\x86\x50\xd8\xcb\x5a\x81\x18\x7b\xef\x78\x51\x28\xed\x97\xcf\xdf\xbe\x43\xe9\x33\xe2\x41\xf8\x18\x50\x05\x22\x19\xd9\x50\x1c\x69\xf9\x83\x44\xb7\x70\xd9\xcc\x1f\xb1\x86\x59\xa4\xe1\x9a\xeb\x9e\x14\xeb\x87\x75\x4f\x91\x49\x29\xd5\x4e\xce\xf1\x31\x55\x5e\xd0\x56\x3d\x7a\x64\x43\xb1\xea\xd1\x3c\x10\xdb\xea\xa0\xde\x80\x9a\x50\x30\xbb\x5d\x05\x6e\x0e\xf5\x1d\xfa\x75\xee\xe6\x45\x96\xb8\x91\xa4\x09\xf6\xfb\x52\x42\x4f\xc3\x58\x2a\xcb\xa9\x46\x1f\x96\xbf\xeb\x2d\x25\xe9\xb0\x61\x67\x19\x77\x2f\x8e\x61\xfa\x7a\xfa\x37\xe8\xd9\x51\x98\xd8\x66\x91\x14\xc8\xe4\x65\x3b\x08\x75\x11\xe7\x73\x67\x5a\xf1\xce\x6c\x1b\xb8\x15\x83\xf9\xce\x82\x44\x2d\x4b\x59\x95\x9f\x0d\xbc\xbd\x38\x8d\x40\x3f\x8e\x82\x65\xd1\xeb\x71\x42\xdd\x36\x10\x4c\x3f\x89\xa5\x56\xa2\x4e\x0f\xa9\x78\x3c\x68\xe0\xf2\xe2\xe2\x84\x34\x7a\x2a\x25\x25\xd3\x52\x75\x18\xd5\xf3\xf0\xba\xeb\xf6\xc4\xc6\xd5\xd5\xe5\x7f\xf2\x71\x4a\x7a\xd1\x47\x7a\xd1\x48\x22\x4f\x46\x25\x0e\x0f\x16\x43\x78\x7e\xea\xba\x0d\xd4\xc0\x6e\xf7\x0f\x4b\xfb\xfd\xe4\x67\x00\x00\x00\xff\xff\xee\x39\xc3\xc9\x4c\x04\x00\x00"), }, "/components/contour/templates/03-contour.yaml": &vfsgen۰CompressedFileInfo{ name: "03-contour.yaml", @@ -542,9 +542,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/templates/03-envoy.yaml": &vfsgen۰CompressedFileInfo{ name: "03-envoy.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4209, + uncompressedSize: 4162, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xdb\x38\x13\xbe\xeb\x57\x10\x79\xfb\x02\xdd\x83\x2c\xbb\xed\x21\x2b\x20\x87\x6c\x92\xcd\x2e\xd0\x3a\x46\x9c\x04\xe9\xa9\x18\x53\x63\x9b\x35\x45\x0a\xe4\x48\xa9\xea\xcd\x7f\x5f\x50\xb2\x65\x49\x96\x6c\x17\x8b\x2e\xd6\xa7\x64\x3e\x1f\xce\x3c\x33\xa4\x7c\xdf\xf7\xfe\xc7\x9e\x9f\x9f\x43\xf6\x51\xaf\x74\xac\x49\x64\xc8\x6c\x82\x5c\xcc\x05\x67\x7c\x09\x6a\x81\x1e\x24\xe2\x09\x8d\x15\x5a\x85\x2c\x1b\x79\x2b\xa1\xa2\x90\x4d\xd1\x64\x82\xe3\x25\xe7\x3a\x55\xe4\xc5\x48\x10\x01\x41\xe8\x31\xa6\x20\xc6\x90\xa1\xca\x74\xbe\xf9\xcf\x26\xc0\x31\x64\x89\xd1\x5f\x91\x13\xd7\x8a\x74\x6a\xbc\xd3\xb2\x97\xe9\xee\xb5\xc4\xdf\x84\x8a\x84\x5a\x34\xf0\x98\x19\xf0\x01\xa4\xb4\xd4\x46\x7c\x07\x12\x5a\x0d\x56\xe7\x76\x20\x74\x90\x8d\xfa\x40\xf9\x89\x11\x99\x90\xb8\xc0\xc8\x4f\x6c\x72\x10\xa3\xd1\x12\xef\x71\xee\x22\x94\x40\xae\x64\x6a\x09\x8d\xc3\x53\x45\xdd\x8b\x07\x89\xb8\x35\x3a\x4d\x0e\xe0\xf3\x6c\x3a\x73\x89\x6c\xe8\xf9\xac\xb3\xa4\x3f\x56\xc8\x7a\x51\x20\x49\x6c\x50\x75\xea\x1a\x30\xd6\x6a\x8a\xcd\x26\x49\x98\xa1\xb4\xee\x2f\x07\x37\x69\xa6\x39\x25\xa9\xeb\x93\x73\x4f\x93\x08\x08\xa7\x64\x80\x70\x91\x97\x01\x29\x4f\xb0\xe8\x99\x14\x6a\xf1\x58\x18\x14\x72\x53\x97\x94\xa6\x8c\xc5\xf0\xed\x51\x41\x06\x42\xc2\x4c\x62\xc8\x46\xc3\xff\x7b\x8c\x59\x94\xc8\x49\x9b\xd2\x2a\x06\xe2\xcb\x8f\x35\xc8\x2d\xd0\x84\x71\x22\xab\x98\xf5\x73\x16\xa6\x4a\x69\x2a\x8a\x5f\x79\x33\x77\x9c\x18\x69\x89\x69\xc1\x16\xcb\x0d\x38\xcc\x67\x64\x52\x3c\xeb\x31\x4a\xb4\xa1\x90\x9d\x9d\x0f\x87\xef\x7a\x4d\x80\x96\x21\x3b\x0b\x2c\x01\xd9\x60\xa7\xdb\xda\xcb\xc6\x19\x5a\xa7\x60\x6c\x5b\x54\xf7\x5b\xaf\x7d\xf6\x22\x68\xc9\x06\x4f\x20\x53\xb4\x03\xa5\x23\xbc\x9c\xcf\x85\x12\x94\xb3\xd7\xd7\xed\xe1\x36\x92\x5d\xcc\xba\x5d\xe8\xad\xd7\x8c\xf4\x67\x88\x25\x1b\xb0\xbf\x98\x50\x11\x2a\x62\xa3\xe1\x2e\x80\xcb\x83\x2a\x72\x82\xbe\xcc\xa4\x25\x9a\xb2\x80\x3b\xbf\x9a\xb0\x27\xcb\xf9\xa1\x24\x8e\x47\x20\x14\x9a\xaa\x1a\x3e\xe3\x3a\x8e\x41\x45\xbb\xa3\xf8\x2c\x98\x09\x15\x6c\x39\x57\x55\xcd\x2c\x6a\x35\x74\x66\xbb\x12\x6e\x25\x76\x99\x52\xa4\x5f\x94\x1f\x83\x82\x05\xee\x9c\x45\x0c\x0b\x0c\xd9\x7a\xbd\x3d\xdd\x26\xfa\xa0\x50\xbc\xbe\x86\xfb\x1a\x82\x45\x75\x92\x4d\x80\x49\x2a\xe5\x44\x4b\xc1\xf3\x90\x5d\xca\x17\xc8\x6d\xa5\x97\x62\x8e\x3c\xe7\x12\xeb\x10\x13\x83\x53\xd2\x49\x5d\xc4\xd8\x92\x28\xb9\x45\x6a\x0a\x19\x2b\x49\x14\x6c\x4f\xd0\xd6\x16\x2c\x3c\x1f\xfe\x3a\x6c\x29\x2c\x5f\xa2\x9b\xdd\x3f\x1e\x1e\x26\x35\x30\x19\x2a\xb4\x76\x62\xf4\xac\x01\xa8\x33\xf7\x26\xf3\x12\x41\xd2\xf2\xbb\x77\x34\xad\xe3\x98\x00\x79\x8d\x12\xf2\x29\x72\xad\x22\x1b\xb2\xf7\xf5\x63\xa3\x11\x3a\xaa\x54\xa3\x9d\x73\xb9\x67\x7a\xba\xe4\xb7\x5a\xec\x33\x9f\xd7\x49\xc1\xb5\x9a\x8b\x45\x50\x74\x7d\xf0\xd5\x6a\x55\xb7\xf4\x6d\xb9\x48\x7d\x5e\xee\x6a\xf6\xe6\xed\xd5\xdd\xf8\xe1\xee\xf1\xfe\xcb\xf8\xf2\xd3\xcd\x74\x72\x79\x75\xf3\x4b\xa7\x83\x9b\x1c\xf6\xe6\xed\xcd\xf8\xe9\xee\xf3\x97\xc9\xdd\x75\x61\xdf\x34\x95\x7a\xe1\x4b\xcc\x50\x32\xa1\xe6\xba\x52\x75\x30\xb7\x49\xc9\x3d\xd6\x95\xd8\xf7\x39\x57\xca\x8f\x30\xee\xcf\xf9\x58\xd3\xc4\xa0\xc5\xe2\xa2\xa8\x57\xb4\x99\x16\x55\x56\xc7\x54\x9a\xec\x55\xa3\xd6\xb0\xcc\xa1\xf8\xdd\xe8\xb8\x49\x8c\xb9\x40\x19\x6d\x2e\xc2\xfa\xaf\xf5\x36\x68\x2a\x0b\xa7\x49\x41\xa9\xed\x4a\x1e\x54\x17\xca\x1e\xaa\x66\xd5\xff\x65\x48\xbb\x75\xae\x0d\x35\x88\x57\xed\xa9\xc9\x66\x00\xea\x33\xa4\x2d\x75\x88\xcb\xf3\xb8\x01\x6b\x2c\x00\x4d\x9a\x6b\x19\xb2\x87\xab\x49\x7f\xfc\x0f\x1f\xde\x77\x26\x68\xca\x77\x19\xec\xd1\x14\x06\x21\x12\x3f\xbc\x02\x9c\x57\xde\xb9\x00\x86\xef\xfe\xc1\x02\xf8\x50\xa9\x32\x2d\xd3\x18\x3f\xb9\xa7\x4e\x6b\x97\xd7\x9f\x6a\xe5\xa0\x37\x70\xc4\xce\xa5\x6c\x61\xb0\xa7\x6e\x78\x73\x34\xd4\xef\x8a\x86\x6c\x87\x27\x87\xc3\x6e\xf0\x5f\xdc\xf3\xae\x0d\x57\x1d\x17\x6a\x7b\x8b\xce\xb4\x26\x4b\x06\x92\xd3\x97\xe9\xb7\xc8\xfa\x10\x45\x06\xad\xbd\x68\xdf\xc3\x5b\xbd\x83\x7a\x71\x3e\x1c\x8e\x1a\x9a\x4d\x07\x61\x2e\x24\x5e\x04\x1c\x82\xb2\xb4\x83\x04\xe3\x2e\x3b\x34\xe4\x6f\x4c\x5d\x6b\x02\x92\x76\xc0\x6b\x9d\xd8\x99\xae\x30\xdf\xb3\x5c\x61\x7e\x68\x19\xb7\x91\xff\xf4\x47\x40\x9d\xc4\xae\x3b\x2d\xa6\x76\xb3\xff\x08\xf7\x0f\x30\xff\x10\xef\x0f\xb1\xde\x8d\xf9\x9d\x92\x79\xc8\xdc\xc3\x77\x2f\xdc\xde\x30\xf4\x8c\x42\x6f\xa0\x9f\x7d\xff\x9c\x72\xc5\x40\x4a\xba\xc0\xdd\xfc\xc0\x7a\xd0\x2b\x54\x21\x9b\x83\xb4\x5b\xcb\xe3\x5f\xa3\xa5\x9d\x6d\x04\x1a\xef\xdd\xbb\x84\x26\x16\xaa\x78\x1b\xdf\x1a\xe0\x38\x69\x2e\xc1\xf7\xc3\xed\x48\x97\x34\x38\x9d\x01\x18\x27\x94\x5f\x0b\x13\xb2\xf5\xeb\x49\xbd\xb7\xc8\x4d\x7b\xf1\x94\xb2\x71\x8f\x4f\x6f\xeb\x8f\x85\x6a\x38\x18\xb4\x04\x86\x5a\xc3\xe1\xfd\x1d\x00\x00\xff\xff\x6a\xaf\x6c\x83\x71\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xdb\x38\x13\xbe\xeb\x57\x10\x79\xfb\x02\xdd\x83\x2c\xbb\xed\x21\x2b\x20\x87\x6c\x92\xcd\x2e\xd0\x3a\x46\x9c\x04\xe9\xa9\x18\x53\x63\x9b\x35\x45\x0a\xe4\x48\xa9\xea\xcd\x7f\x5f\x50\xb2\x65\x7d\x58\xb6\x8b\x45\x17\xeb\x53\xc2\xf9\x7a\x66\xe6\x99\x21\xe5\xfb\xbe\xf7\x3f\xf6\xfc\xfc\x1c\xb2\x8f\x7a\xa5\x63\x4d\x22\x43\x66\x13\xe4\x62\x2e\x38\xe3\x4b\x50\x0b\xf4\x20\x11\x4f\x68\xac\xd0\x2a\x64\xd9\xc8\x5b\x09\x15\x85\x6c\x8a\x26\x13\x1c\x2f\x39\xd7\xa9\x22\x2f\x46\x82\x08\x08\x42\x8f\x31\x05\x31\x86\x0c\x55\xa6\xf3\xcd\x7f\x36\x01\x8e\x21\x4b\x8c\xfe\x8a\x9c\xb8\x56\xa4\x53\xe3\x9d\x16\xbd\x0c\x77\xaf\x25\xfe\x26\x54\x24\xd4\xa2\x81\xc7\xcc\x80\x0f\x20\xa5\xa5\x36\xe2\x3b\x90\xd0\x6a\xb0\x3a\xb7\x03\xa1\x83\x6c\xd4\x07\xca\x4f\x8c\xc8\x84\xc4\x05\x46\x7e\x62\x93\x83\x18\x8d\x96\x78\x8f\x73\xe7\xa1\x04\x72\x25\x53\x4b\x68\x1c\x9e\xca\x6b\xc7\x1f\x24\xe2\xd6\xe8\x34\x39\x80\xcf\xb3\xe9\xcc\x05\xb2\xa1\xe7\xb3\xbd\x25\xfd\xb1\x42\xd6\x8b\x02\x49\x62\x83\xaa\x53\xd7\x80\xb1\x56\x53\x6c\x36\x49\xc2\x0c\xa5\x75\x7f\x39\xb8\x49\x33\xcc\x29\x41\x5d\x9f\x9c\x79\x9a\x44\x40\x38\x25\x03\x84\x8b\xbc\x74\x48\x79\x82\x45\xcf\xa4\x50\x8b\xc7\x42\xa1\x38\x37\xf5\x93\x52\x95\xb1\x18\xbe\x3d\x2a\xc8\x40\x48\x98\x49\x0c\xd9\x68\xf8\x7f\x8f\x31\x8b\x12\x39\x69\x53\x6a\xc5\x40\x7c\xf9\xb1\x06\xb9\x05\x9a\x30\x4e\x64\xe5\xb3\x9e\x67\xa1\xaa\x94\xa6\xa2\xf8\x95\x35\x73\xe9\xc4\x48\x4b\x4c\x0b\xb6\x58\x6e\xc0\x61\x3e\x23\x93\xe2\x59\x8f\x52\xa2\x0d\x85\xec\xec\x7c\x38\x7c\xd7\xab\x02\xb4\x0c\xd9\x59\x60\x09\xc8\x06\x3b\xd9\x56\x5f\x36\x72\x68\x65\xc1\xd8\xb6\xa8\xee\xb7\x5e\xfb\xec\x45\xd0\x92\x0d\x9e\x40\xa6\x68\x07\x4a\x47\x78\x39\x9f\x0b\x25\x28\x67\xaf\xaf\xdb\xe4\x36\x27\x3b\x9f\x75\xbd\xd0\x5b\xaf\x19\xe9\xcf\x10\x4b\x36\x60\x7f\x31\xa1\x22\x54\xc4\x46\xc3\x9d\x03\x17\x07\x55\xe4\x0e\xfa\x22\x93\x96\x68\xca\x02\xee\xec\x6a\x87\x3d\x51\xce\x0f\x05\x71\x3c\x02\xa1\xd0\x54\xd5\xf0\x19\xd7\x71\x0c\x2a\xda\xa5\xe2\xb3\x60\x26\x54\xb0\xe5\x5c\x55\x35\xb3\xa8\xd5\xd0\xa9\xed\x4a\xb8\x3d\xb1\xcb\x94\x22\xfd\xa2\xfc\x18\x14\x2c\x70\x67\x2c\x62\x58\x60\xc8\xd6\xeb\x6d\x76\x1b\xef\x83\x42\xf0\xfa\x1a\x76\x25\x04\x8b\x2a\x93\x8d\x83\x49\x2a\xe5\x44\x4b\xc1\xf3\x90\x5d\xca\x17\xc8\x6d\x25\x97\x62\x8e\x3c\xe7\x12\xeb\x10\x13\x83\x53\xd2\x49\xfd\x88\xb1\x25\x51\x72\x8b\xd4\x3c\x64\xac\x24\x51\xb0\xcd\xa0\x2d\x2d\x58\x78\x3e\xfc\x75\xd8\x12\x58\xbe\x44\x37\xbb\x7f\x3c\x3c\x4c\x6a\x60\x32\x54\x68\xed\xc4\xe8\x59\x03\xd0\xde\xd8\x9b\xc8\x4b\x04\x49\xcb\xef\xde\xd1\xb0\x8e\x63\x02\xe4\x35\x4a\xc8\xa7\xc8\xb5\x8a\x6c\xc8\xde\xd7\xd3\x46\x23\x74\x54\x89\x46\x3b\xe3\x72\xcf\xf4\x74\xc9\x6f\xb5\xd8\x67\x3e\xaf\x93\x82\x6b\x35\x17\x8b\xa0\xe8\xfa\xe0\xab\xd5\xaa\xae\xe9\xdb\x72\x91\xfa\xbc\xdc\xd5\xec\xcd\xdb\xab\xbb\xf1\xc3\xdd\xe3\xfd\x97\xf1\xe5\xa7\x9b\xe9\xe4\xf2\xea\xe6\x97\xbd\x06\x6e\x72\xd8\x9b\xb7\x37\xe3\xa7\xbb\xcf\x5f\x26\x77\xd7\x85\x7e\x53\x55\xea\x85\x2f\x31\x43\xc9\x84\x9a\xeb\x4a\xb4\x87\xb9\x4d\x4a\x76\x58\x57\x62\xef\x72\xae\x3c\x3f\xc2\xb8\x3f\xe7\x63\x4d\x13\x83\x16\x8b\x8b\xa2\x5e\xd1\x66\x58\x54\x59\x1d\x53\xa9\xd2\xa9\x46\xad\x61\x99\x43\xf1\xbb\xd1\x71\x93\x18\x73\x81\x32\xda\x5c\x84\xf5\x5f\xeb\x6d\xd0\x14\x16\x46\x93\x82\x52\xdb\x95\x3c\xa8\x2e\x94\x0e\xaa\x66\xd5\xff\x65\x48\xbb\x75\xae\x0d\x35\x88\x57\xed\xa9\xc9\x66\x00\x6a\x1e\x4b\xe0\x6e\x92\x1a\x93\xae\x49\x73\x2d\x43\xf6\x70\x35\xe9\x77\xf4\xe1\xc3\xfb\xbd\x9e\xec\x51\x57\x06\x21\x12\x3f\x3c\xd3\xce\x2a\xdf\x3b\xd1\xc3\x77\xff\x60\xa2\x3f\x54\xa2\x4c\xcb\x34\xc6\x4f\xee\xed\xd2\x5a\xce\xf5\xb7\x57\x39\xb9\x0d\x1c\xb1\x33\x29\x7b\x12\x74\xc4\x0d\x6b\x8e\x86\xfa\x4d\xd1\x90\xdd\x63\xc9\xe1\xb0\x19\xfc\x17\x17\xb7\x6b\xc3\xd5\x9e\x1b\xb2\xbd\x16\x67\x5a\x93\x25\x03\xc9\xe9\xdb\xf1\x5b\x64\x7d\x88\x22\x83\xd6\x5e\xb4\x2f\xd6\xad\xdc\x41\xbd\x38\x1f\x0e\x47\x0d\xc9\xa6\x83\x30\x17\x12\x2f\x02\x0e\x41\x59\xda\x41\x82\xf1\x3e\x3d\x34\xe4\x6f\x54\x5d\x6b\x02\x92\x76\xc0\x6b\x9d\xd8\xa9\xae\x30\xef\x68\xae\x30\x3f\xb4\x5d\xdb\xc8\x7f\xfa\xad\x5e\x27\xb1\xeb\x4e\x8b\xa9\xfb\xd9\x7f\x84\xfb\x07\x98\x7f\x88\xf7\x87\x58\xef\xc6\xfc\x4e\xc9\x3c\x64\xee\x25\xdb\x71\xd7\x19\x86\x9e\x51\xe8\x75\xf4\xb3\x2f\x94\x53\xee\x0c\x48\x49\x17\xb8\x9b\x5f\x4c\x0f\x7a\x85\x2a\x64\x73\x90\x76\xab\x79\xfc\xf3\xb2\xd4\xb3\x0d\x47\xe3\xce\x45\x4a\x68\x62\xa1\x8a\xc7\xee\xad\x01\x8e\x93\xe6\x12\x7c\x3f\xdc\x8e\x74\x49\x83\xd3\x19\x80\x71\x42\xf9\xb5\x30\x21\x5b\xbf\x9e\xd4\x7b\x8b\xdc\xb4\x17\x4f\x79\x36\xee\xb1\xe9\x6d\xfd\x31\x57\x0d\x03\x83\x96\xc0\x50\x6b\x38\xbc\xbf\x03\x00\x00\xff\xff\xf0\x0f\x91\x5c\x42\x10\x00\x00"), }, "/components/contour/templates/alerts.yaml": &vfsgen۰CompressedFileInfo{ name: "alerts.yaml", @@ -577,9 +577,9 @@ var vfsgenAssets = func() http.FileSystem { "/components/contour/values.yaml": &vfsgen۰CompressedFileInfo{ name: "values.yaml", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 495, + uncompressedSize: 510, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xbd\x4e\xc3\x30\x10\xc7\xf7\x7b\x8a\x93\x32\x37\xa5\xea\xe6\x0d\x89\x4a\xb0\xb0\x94\x0d\x31\x18\xe7\x92\x1e\x71\x7c\xa9\x7d\x0e\x89\x10\xef\x8e\x92\x7e\xa8\x48\x48\x4c\xb6\x7e\xff\x8f\xd3\xd9\x9d\x04\x56\x89\x1c\x1a\x03\x88\x14\xec\xbb\x27\x83\xb5\xf5\x89\x00\x38\x34\x91\x52\x7a\x94\xa4\xc9\x00\x38\x09\x2a\x39\xce\x46\xee\x6c\x43\x06\x2b\x71\x2d\xc5\x92\x65\xdd\x47\xf9\x20\xa7\x67\xcb\xfa\x7c\x02\xa2\xda\xc6\xe0\xb0\x29\xb7\xe5\x1d\x00\x85\x41\xa6\x3f\xf3\x8b\xd2\x47\x19\xa7\xd3\xf5\x26\xb9\xd9\x96\x1b\x80\x20\x15\xdd\xd7\x35\x07\xd6\xc9\xe0\xd7\x37\x14\xf8\x0b\x41\x81\x88\x91\x8e\x99\x23\x55\x0f\x79\xde\x68\xef\x0e\x54\x65\xcf\xa1\x79\x6a\x82\x5c\xf1\x6e\x24\x97\x95\x25\x9c\x32\xb8\xf4\xec\xc9\x93\x53\x89\x2f\x14\xbb\x74\x11\x56\xd8\x59\x75\x87\xdd\xd8\xcf\xcf\xc0\x12\xae\xca\xac\xb5\x34\x19\x0c\xa4\x9f\x12\xdb\xd2\x4b\x2b\x9d\x28\x0f\x54\xb2\x5c\x4d\x88\xd2\x53\xb4\x2a\xd1\xe0\x6e\xe4\xa4\x09\x00\x54\xfc\xcc\x96\x3a\x7c\x7d\x83\x02\x6f\x09\x14\xb8\x42\xaa\x6b\x72\x6a\xf0\x59\xce\x3b\xd0\x52\xf9\xcf\xc4\x9b\x59\xc7\x6c\xfd\xc2\x06\xeb\x33\x19\xbc\xfc\xc7\x4f\x00\x00\x00\xff\xff\x5e\xa1\x25\xfd\xef\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3d\x6b\xf3\x30\x10\xc7\xf7\xfb\x14\x07\x9e\xe3\x3c\x21\x9b\xb6\x07\x1a\x68\x97\x2e\xc9\x56\x3a\xa8\xf2\xd9\xb9\x5a\xd6\x39\xd2\xc9\xb5\x29\xfd\xee\xc5\xce\x0b\x29\x14\x3a\x49\xfc\xfe\x2f\xc7\x49\x9d\x04\x56\x89\x1c\x1a\x03\x88\x14\xec\x9b\x27\x83\xb5\xf5\x89\x00\x38\x34\x91\x52\x7a\x94\xa4\xc9\x00\x38\x09\x2a\x39\xce\x46\xee\x6c\x43\x06\x2b\x71\x2d\xc5\x92\x65\xdd\x47\x79\x27\xa7\x17\xcb\xfa\x72\x02\xa2\xda\xc6\xe0\xb0\x29\xb7\xe5\x3f\x00\x0a\x83\x4c\xbf\xe6\x17\xa5\x8f\x32\x4e\xe7\xeb\x5d\x72\xb3\x2d\x37\x80\x98\x28\x0e\xec\xe8\x30\xf5\x64\x00\x82\x54\xf4\xbf\xae\x39\xb0\x4e\x06\x3f\xbf\xa0\xc0\x1f\x08\x0a\x44\x8c\x74\xca\x1c\xa9\x7a\xc8\xf3\x82\x7b\x77\xa4\x2a\x7b\x0e\xcd\x53\x13\xe4\x86\x77\x23\xb9\xac\x2c\xe1\x9c\xc1\xa5\x67\x4f\x9e\x9c\x4a\x3c\x50\xec\xd2\x55\x58\x61\x67\xd5\x1d\x77\x63\x3f\xbf\x0a\x4b\xb8\x29\xb3\xd6\xd2\x64\x30\x90\x7e\x48\x6c\x4b\x2f\xad\x74\xa2\x3c\x50\xc9\x72\x33\x21\x4a\x4f\xd1\xaa\x44\x83\xbb\x91\x93\x26\x00\x50\xf1\x33\x5b\xea\xf0\xe5\x15\x0a\xbc\x27\x50\xe0\x0a\xa9\xae\xc9\xa9\xc1\x67\xb9\xec\x40\x4b\xe5\x1f\x13\xef\x66\x9d\xb2\xf5\x0b\x1b\xac\xcf\x64\xf0\xfa\x3d\xdf\x01\x00\x00\xff\xff\x44\xb8\x61\x21\xfe\x01\x00\x00"), }, "/components/external-dns": &vfsgen۰DirInfo{ name: "external-dns", @@ -3345,16 +3345,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/nlb.tf": &vfsgen۰CompressedFileInfo{ name: "nlb.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2365, + uncompressedSize: 1778, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x96\xdf\x6b\xeb\x36\x14\xc7\xdf\xf5\x57\x1c\xd4\x5d\xd8\xc6\xbd\x26\x25\x59\xd9\x4b\x1e\xda\x8e\xb1\x41\x09\x65\x0d\xec\x61\x0c\x21\xcb\x27\xb1\xa8\x22\x79\x47\x72\xb2\xae\xe4\x7f\x1f\x92\xe5\xc4\x6e\xd2\xee\x61\xed\xed\x43\xc1\x3a\x3a\xbf\x3e\xe7\xeb\xe3\x5c\xc0\x02\xc3\xce\xd1\x23\xdc\x39\x59\xc1\x8d\x34\xd2\x2a\x24\xf8\x69\xf1\x00\xbf\xa1\x72\x54\x31\x42\xef\x5a\x52\x08\x5c\xee\xbc\x20\xd7\x06\xfc\x61\x2a\x28\x19\x39\x70\xd9\x68\x8f\xb4\x45\xe2\xf0\xcc\x00\xfe\x71\x16\x85\xae\x60\x0e\x5b\x49\x45\x65\xbd\xc8\x27\x8c\x01\x58\xb9\x41\x98\xc3\xca\xd1\x46\x86\x6f\xf9\x27\x5f\x7c\xf2\x05\xff\x9c\xae\x2a\xd3\xfa\x80\x24\xe2\x9d\xcf\x23\xe7\xef\x18\x40\x78\x6a\xa2\x27\xbf\xe6\x31\xce\x05\x5c\xff\xfe\x00\xb1\x84\xcd\x06\x6d\xe5\x21\xd4\xa8\x09\x7c\x83\x4a\x4b\x03\x5c\x1a\x2d\x3d\x87\xae\x46\x1f\xf3\xc1\xe2\xee\xc6\x33\x80\x64\x49\x85\xe6\x6a\x4e\xff\xe6\x10\xfb\x34\x65\x61\x4d\x99\x6a\x88\xf7\x92\x43\xdf\xdb\x5b\x0e\x7d\xb7\xd1\x80\x5b\x69\x5a\x19\x50\x04\x49\x6b\x0c\xa2\x46\x69\x42\x0d\x73\x08\xd4\xc6\x88\x7b\xb6\x67\xec\xb5\x09\xc4\xa2\x0f\x6c\x3d\x48\x5b\x81\xb6\x6b\x42\xef\x5f\x4c\xc4\x94\x1c\xb8\x8d\xff\x9f\xd9\xd9\xa6\xe6\xc0\xbf\x79\x7e\x89\x78\xff\x25\xba\x30\x00\xe3\x64\x25\xca\x9c\x55\xf4\x9c\x6d\x57\x53\xbc\xa0\x6d\x40\xb2\xd2\x8c\x22\xae\xa4\xf1\x18\x47\xe1\xdb\xd2\x62\xf0\x19\x42\xf7\x54\x34\x6d\x69\xb4\x2a\xbe\x2f\xba\xb1\xa3\x95\xa5\x41\xa1\xc8\xf9\x2c\x87\x41\x52\x6d\xd7\x3d\x91\x44\xe3\x67\x47\x3b\x49\x15\x2c\x6f\xef\x8f\xfd\x43\x20\xb9\x5a\x69\x05\xc1\x81\x72\x36\x90\x33\x06\xe9\x94\x84\x30\xda\x07\xb4\x51\x8c\x47\x61\x7e\xa9\x43\x68\x7c\x87\x67\xdc\xad\x24\x3b\x9e\x9e\x24\xcb\x00\x1a\x72\xc1\x29\x67\x46\x08\x97\xb7\xf7\x91\x46\xe3\x28\x9c\xe0\xbd\x9a\xcd\xa6\x49\x98\x15\xae\x64\x6b\x82\x90\x2a\x68\x67\xb3\xce\x12\xd3\x17\x1e\xab\xae\x4b\xde\x5d\xe8\xe4\xb1\x26\xd7\x36\xa3\x9a\xc4\xd0\x52\x0c\x1a\xcf\x85\xee\xc7\xc8\x7e\x59\x2e\xef\x7b\x91\x0c\x89\xc5\x49\xfe\x17\xad\xec\x96\x58\x7d\x20\xaa\x1f\x27\xef\x8a\x69\xe3\xaa\xd6\x60\x91\x1b\x2c\x46\x37\x62\x27\xe7\x19\x3d\xbc\x07\xa4\x8f\x14\xd4\x6c\x36\xfd\xaa\x98\xfc\x91\xd3\x32\xd9\x20\xd9\xc0\xad\xde\x7e\xdb\x86\x81\x38\xf0\xc1\xdd\xd3\x65\xf4\xca\x16\x1a\xfa\x30\x80\x6d\xa3\x0e\x1b\xb6\x03\xb9\x6d\x54\x91\xb7\x51\x91\xf6\x6a\x4e\xda\x6f\x2a\x6d\x7d\x88\xf0\xd3\xfb\x77\x00\x7d\x86\xef\x1c\xae\x32\xd7\x8b\xb4\x5c\xf2\x36\x56\x35\xaa\xc7\xf1\xb6\x65\x90\x8d\xa2\x33\x76\xe0\xcf\xc4\x3e\x1b\x3d\xc6\x8f\x5f\x1b\x20\xfc\xab\xd5\x84\x55\x54\x57\xeb\x11\x7c\xa4\xd1\x05\x7e\x4a\xfb\xbc\xb5\xfd\x53\xa8\x09\x7d\xed\x4c\xe5\x53\x80\x7c\x2c\x0e\xc7\x29\xc1\x34\xd9\x0e\x4e\x03\x6b\xb4\xe5\xcc\xbf\xc6\x6d\xbd\x95\x06\x4a\x0c\x3b\x44\x3b\x6a\x73\x5c\x53\x89\x70\x39\x01\x47\x30\x9d\x24\x67\xdd\xbb\xce\xe1\x72\x72\x54\xc4\x75\x08\x52\xd5\x03\x21\x40\x8f\xdc\xc7\x28\xc7\x1d\xbd\xb8\xbb\x79\x5b\x22\x42\xa6\x50\x1b\xb4\xe1\x9c\x5a\x94\x6b\x6d\xc8\x3f\x1c\x8e\x46\x91\x8e\x19\xfb\x1f\x6b\x32\x9b\x8f\x5f\xee\xce\xb1\x6f\x63\xe8\xf1\x47\xca\x56\x68\x5b\xe1\xdf\x7f\x76\x7a\x3b\x79\x41\xf3\xa8\xf7\xec\xdf\x00\x00\x00\xff\xff\x36\x93\xed\x99\x3d\x09\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4d\x6b\x2b\x37\x14\xdd\xeb\x57\x5c\x94\x06\xda\x92\x0c\x09\x4e\xbb\xf3\x22\x49\x29\x14\x82\x09\x4d\xa0\x8b\x52\x84\x46\x73\xed\x11\x91\xa5\xe9\x95\xc6\x7e\x79\xc1\xff\xfd\xa1\x8f\xb1\x67\x6c\xbf\x6c\x5e\x16\x01\xeb\x7e\x9d\x7b\xee\x39\x73\x01\x0b\x0c\x5b\x47\x6f\xf0\xe4\x64\x03\x0f\xd2\x48\xab\x90\xe0\x8f\xc5\x0b\xfc\x8d\xca\x51\xc3\x08\xbd\xeb\x49\x21\x70\xb9\xf5\x82\x5c\x1f\xf0\xb7\x99\xa0\x14\xe4\xc0\x65\xa7\x3d\xd2\x06\x89\xc3\x07\x03\xf8\xea\x2c\x0a\xdd\xc0\x1c\x36\x92\xaa\xc6\x7a\x51\x5e\x18\x03\xb0\x72\x8d\x30\x87\xa5\xa3\xb5\x0c\x3f\xf3\x4b\x5f\x5d\xfa\x8a\x5f\xa5\x54\x65\x7a\x1f\x90\x44\xcc\xb9\x9a\x14\xff\xc2\x00\xc2\x7b\x17\x2b\xf9\x3d\x8f\x7d\x2e\xe0\xfe\x9f\x17\x88\x10\xd6\x6b\xb4\x8d\x87\xd0\xa2\x26\xf0\x1d\x2a\x2d\x0d\x70\x69\xb4\xf4\x1c\x32\x46\x1f\xe7\xc1\xe2\xe9\xc1\x33\x80\x14\x49\x40\x0b\x9a\xd3\xbf\x39\xc4\x3d\x4d\x5d\x59\x53\x27\x0c\x31\x2f\x15\x0c\xbb\x7d\x56\x30\x6c\x1b\x03\xb8\x91\xa6\x97\x01\x45\x90\xb4\xc2\x20\x5a\x94\x26\xb4\x30\x87\x40\x7d\xec\xb8\x63\x3b\xc6\xbe\x77\x81\x08\x7a\xcf\xad\x07\x69\x1b\xd0\x76\x45\xe8\xfd\xd1\x45\x4c\xcd\x81\xdb\xf8\xff\x83\x9d\x5d\x6a\x0e\xfc\xa7\x8f\x63\x8a\x77\xd7\xb1\x84\x01\x18\x27\x1b\x51\x97\xa9\x62\xe0\xd9\x66\x4c\x31\x41\xdb\x80\x64\xa5\x99\x74\x5c\x4a\xe3\x31\x9e\xc2\xf7\xb5\xc5\xe0\x0b\x09\xf9\x57\xd5\xf5\xb5\xd1\xaa\xfa\xb5\xca\x67\x47\x2b\x6b\x83\x42\x91\xf3\x45\x0e\xa3\xa1\xda\xae\x06\x46\x12\x1b\x7f\x3a\xda\x4a\x6a\xe0\xf5\xf1\xf9\xb0\x3f\x04\x92\xcb\xa5\x56\x10\x1c\x28\x67\x03\x39\x63\x90\x4e\x99\x10\x46\xfb\x80\x36\x8a\xf1\x20\xcc\xeb\x36\x84\xce\x67\x7a\xa6\xdb\x4a\xb2\xd3\xeb\x49\xb2\x0c\xa0\x23\x17\x9c\x72\x66\x42\xe1\xeb\xe3\x73\x64\xa3\x73\x14\x4e\xe8\xfd\xfd\xee\x6e\x96\x84\xd9\xe0\x52\xf6\x26\x08\xa9\x82\x76\xb6\xe8\x2c\x71\x7a\x54\xb1\xcc\x5b\xf2\x9c\x90\xe5\xb1\x22\xd7\x77\x13\x4c\x62\x1c\xa9\x46\x8b\x17\xa0\x45\x40\xaf\x29\x0b\x52\x16\xb8\xe5\xe7\x0c\x8d\x5b\x72\xe0\xa3\xdc\xcc\xd0\xa6\x53\x7b\x8d\x67\x1c\x9b\x4e\x55\x45\x0f\x55\x52\x76\x69\x31\x68\x45\x5b\x1f\x22\x9f\x89\x81\x3d\x77\x67\x28\x9b\x43\x24\x2a\x1b\x38\x9e\xb7\xf8\x41\xb5\xa8\xde\xa6\x7a\x67\x50\x82\x22\x07\x33\x91\x67\x7a\x9f\xed\x1e\xfb\x47\xbf\x03\xe1\xff\xbd\x26\x6c\xa2\x6c\x7a\x8f\xe0\xa3\x39\x72\xe3\xf7\xe4\xa8\xde\x0e\xbf\x42\x4b\xe8\x5b\x67\x1a\x9f\x1a\x94\x67\xb1\x7f\x4e\x03\x66\x29\xb6\x2f\x1a\x45\x63\xac\x4c\xfe\x2b\xfa\x65\x23\x0d\xd4\x18\xb6\x88\x76\xb2\xe6\x14\x53\x8d\x70\x7b\x03\x8e\x60\x76\x93\x8a\xf5\x50\x3a\x87\xdb\x9b\x74\xdf\xc4\xf6\x2a\xda\x2b\x53\xf0\x98\x2d\xbc\xc8\x1f\xd2\x63\x53\x1f\x24\x71\x1f\x82\x54\xed\x48\x09\x30\x5c\xc9\xc7\xc1\x07\x63\x2d\x9e\x1e\x3e\xd7\x88\x90\xa9\xd5\x1a\x6d\x38\x27\x17\xe5\x7a\x1b\x06\x28\xfb\xa0\x48\xcf\x8c\xfd\x80\xb6\x4b\xf8\xf0\xb9\xcd\x85\xc3\x1a\xe3\x8a\x7f\xd3\xb4\x4a\xdb\x06\xbf\xfc\x97\x25\x7a\x62\xd3\xa2\x8e\x1d\xfb\x16\x00\x00\xff\xff\x0a\x5a\xed\x3e\xf2\x06\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1829, + uncompressedSize: 1516, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x4f\x6f\xdb\x3c\x0c\xc6\xef\xfe\x14\x44\xde\xdb\x0b\x54\x97\x61\xc7\x1e\xb6\xf5\xb0\x62\x45\x57\xb4\xc5\x2e\xc3\x60\xc8\x12\x93\x10\x55\x44\x41\xa2\x52\x74\x43\xbf\xfb\x60\xcb\xce\x1f\x27\xf3\xbc\x2d\xa7\xc0\x7e\xf8\x3c\x3f\x52\x94\x39\x4b\xc8\x02\x8b\xa7\xdc\xa0\x61\xbf\xa4\xd5\x85\xb6\x1b\xf2\x0b\xf8\x51\x01\x6c\xb5\xcb\x08\x97\xb0\x61\x9b\x1d\xaa\x86\x59\x5a\xa1\x1a\xab\xab\xd7\xaa\xfa\x0f\x3e\x77\x5e\x09\x96\x1c\xe1\x53\x6e\x30\x7a\x14\x4c\x70\xed\x57\x11\x53\xaa\xaa\x21\x8b\xca\x83\xda\xfa\x54\x7b\xbd\xc1\xc3\xac\xf2\xbb\x04\xfd\x9c\x6a\xd7\x28\xef\x1a\x35\xc8\x2a\x00\x8b\xc9\x44\x0a\x42\xec\xe1\x12\x16\x57\xb7\x0f\xd0\xbe\x01\x5e\x82\xac\x11\x3c\xca\x33\xc7\x27\x70\xac\x2d\x34\xda\x69\x6f\x30\x76\x38\x96\x92\x44\x6a\xb2\x90\x5f\x81\x44\xbd\x5c\x92\x01\xe1\x81\x0d\x0c\x7b\x89\xec\x1c\xc6\xb4\x68\x9b\x19\xa3\x7e\x67\x8f\x35\xd9\xdf\x90\xf6\xaa\x53\xd0\x7b\xce\x82\x6f\xdf\x40\x2b\x00\xb2\xd3\xbc\xbb\xae\x64\xad\x05\x8c\xf6\xd0\x20\xe4\x84\x16\xc8\xc3\xe0\xa4\x1d\xe9\x04\x11\x0d\x47\x5b\x90\x8f\xe7\xdf\xfa\x62\x84\xc0\xec\x0e\x26\xbf\x0d\x66\xa2\x8b\x6d\x30\xaa\x47\x52\xe7\xba\xb8\xbe\x1a\xc0\xbf\xdc\x7d\xe8\x52\x4c\x44\xdd\x8d\xb4\x8f\x23\x9f\xa4\x6d\xe2\x78\x88\x29\x37\x1e\xa5\x26\x9b\xce\x25\x7f\x6d\xa3\x8b\x44\x85\xdc\x38\x32\xea\x7f\x45\xf6\xdb\x69\xfe\x0d\x25\x69\x09\x8a\x18\xae\xaf\xd2\x1f\x40\x94\x97\x75\x42\x93\x23\xc9\x4b\xbd\x8a\x9c\xc3\x04\xd0\x91\x4e\x95\xea\x69\xac\x3e\x7e\xa8\x84\xae\xb2\xa5\x3c\xe2\xd8\x5f\x9d\xd9\x57\xac\xfd\xeb\x50\x4e\x0f\xd9\xe4\x24\xbc\x39\x5c\x1f\xf2\xab\x7d\x94\x77\xcd\xee\xb4\x47\xcc\xef\xee\x6f\x87\xb3\xbc\xed\x97\xf0\xa6\x75\x79\xdf\x2f\xe1\x62\x6a\xcd\xc9\x9e\x19\xac\xe8\xb8\x42\x29\xe3\xaa\xd7\x22\x61\x2a\x57\x43\x91\xf7\x33\xda\x0d\xaf\xb4\xf5\xf1\xf1\xf1\x6e\xb8\xa4\xa7\x20\xfd\xa0\xfa\x02\x75\x92\x3b\x87\x2d\xfd\x1b\xdc\xc3\xdf\xd3\xa5\x72\x8a\x5d\x51\x52\x2f\x7a\xe3\xba\x6f\x0f\x7a\xe9\xdc\xb5\x73\x60\x31\x38\x7e\x41\x0b\x66\xad\xa3\x24\xb5\xeb\x26\xb0\xbd\x30\x6b\x34\x4f\x81\xc9\x0b\xc6\xba\xb8\x4c\xef\xd1\x2f\x8a\xc6\x2b\x79\xa1\x03\x25\x8c\xdb\x99\xae\x67\x4b\xc6\x9e\xe5\xfb\x3f\xdb\xef\x48\x3e\xf6\x72\x28\xb3\x8d\xf6\xda\x43\x17\xa3\x1d\x19\x9e\x65\x72\x24\xad\x5e\xab\x9f\x01\x00\x00\xff\xff\xa8\x18\x3e\x5e\x25\x07\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x4f\x8f\x13\x31\x0c\xc5\xef\xf3\x29\xac\x72\x43\xda\x5c\x10\xc7\x3d\x00\x7b\xa9\x58\x15\xb4\x48\x5c\x10\x1a\x65\x12\xb7\xb5\x9a\xc6\x51\xe2\x74\x55\xd0\x7e\x77\x94\xf9\xb3\xed\x4c\xcb\x50\x7a\xaa\x3a\xcf\xef\xfd\xec\xb1\xcb\x59\x42\x16\x58\xec\x72\x83\x86\xfd\x9a\x36\x77\xda\xee\xc9\x2f\xe0\x77\x05\x70\xd0\x2e\x23\xdc\xc3\x9e\x6d\x76\xa8\x1a\x66\x29\x42\x35\x55\x57\x2f\x55\xf5\x06\xbe\xb4\x5e\x09\xd6\x1c\xe1\x73\x6e\x30\x7a\x14\x4c\xb0\xf4\x9b\x88\x29\x55\xd5\x90\x45\xdd\x0f\xb5\xf5\xa9\xf6\x7a\x8f\xe7\x59\xdd\xe7\x1e\xf4\x73\xaa\x5d\xa3\xbc\x6b\xd4\x20\xab\x00\x2c\x26\x13\x29\x08\xb1\x87\x7b\x58\x3c\xac\xbe\x41\x79\x02\xbc\x06\xd9\x22\x78\x94\x67\x8e\x3b\x70\xac\x2d\x34\xda\x69\x6f\x30\xb6\x38\x96\x92\x44\x6a\xb2\x90\xdf\x80\x44\xbd\x5e\x93\x01\xe1\x81\x0d\x0c\x7b\x89\xec\x1c\xc6\xb4\x28\xcd\x4c\x51\x7f\xb1\xc7\x9a\xec\x3f\x48\x7b\xd5\x25\xe8\x13\x67\xc1\xf7\xef\xa0\x08\x80\xec\x3c\xef\x6b\x57\xb2\xd5\x02\x46\x7b\x68\x10\x72\x42\x0b\xe4\x61\x70\xd2\x8e\x74\x82\x88\x86\xa3\xed\x90\xc7\xf3\x2f\xbe\x18\x21\x30\xbb\xb3\xc9\x1f\x82\x99\xe9\xe2\x10\x8c\xea\x91\xd4\xb5\x2e\x96\x0f\x03\xf8\xf7\xaf\x9f\xda\x14\x13\x51\xb7\x23\xed\xe3\xc8\x27\x29\x4d\x8c\x87\x98\x72\xe3\x51\x6a\xb2\xe9\x5a\xf2\x8f\x12\xdd\x49\x54\xc8\x8d\x23\xa3\xde\x2a\xb2\x3f\x2f\xf3\x1f\x29\x49\x21\xe8\xc4\xb0\x7c\x48\xff\x01\xd1\x3d\xac\x13\x9a\x1c\x49\x8e\xf5\x26\x72\x0e\x33\x40\x23\x9d\xea\xaa\xe7\xb1\xfa\xf8\xa1\x12\xda\xca\x42\x39\xe2\x38\x9d\xce\xcd\x27\x56\xbe\x3a\x94\xcb\x97\x6c\x72\x12\xde\x9f\xaf\x0f\xf9\xcd\x29\xca\xbb\xa6\xd6\xb1\x3f\xe5\x09\xf4\x87\xa7\xd5\xf0\x32\x57\xfd\x16\x3e\x16\x9b\x8f\xfd\x16\x2e\xe6\xf6\x5c\xc7\xfe\xe2\x5b\x45\x52\x47\xbd\x77\xed\x09\xa1\x97\x16\x4c\x3b\x07\x16\x83\xe3\x23\x5a\x30\x5b\x1d\x25\xa9\x57\xac\xc0\xf6\xce\x6c\xd1\xec\x02\x93\x17\x8c\x75\xe7\x32\x3f\x8e\xbf\x14\x4d\x27\x7b\xa7\x03\x25\x8c\x87\x1b\x5d\xaf\x96\x4c\x3d\xbb\xbf\xb1\x9b\xfd\x46\xf2\xa9\x97\x43\xb9\xd9\xe8\xa4\x3d\x77\x31\xda\x91\xe1\x9b\x4c\x46\xd2\xea\xa5\xfa\x13\x00\x00\xff\xff\x3d\x16\x25\x6e\xec\x05\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/require.tf": &vfsgen۰CompressedFileInfo{ name: "require.tf", @@ -3366,23 +3366,23 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/security.tf": &vfsgen۰CompressedFileInfo{ name: "security.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 8996, + uncompressedSize: 8775, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x4d\x6f\xeb\x36\x10\xbc\xeb\x57\x2c\x94\x1e\xde\x03\x22\x57\xfe\x68\x1c\x07\x30\x8a\xa2\x87\xde\x8a\x02\x3d\xf4\x50\x14\x82\x42\xad\x1d\x21\xb4\x28\x90\x94\x9d\xe0\x21\xff\xbd\xa0\x44\xc5\xd6\x97\x6d\xca\xb2\x14\x27\xb7\x15\x49\xef\x0c\x67\x49\xee\xdc\xc1\xdf\x48\x12\x1e\xca\x77\xf8\x83\xb3\x24\x16\xf0\x2d\x8c\x84\xf4\x23\x82\xb0\x0a\x39\xee\x7c\x4a\xc5\x77\xcb\xba\x83\xdf\x59\x24\x39\xa3\x14\x39\x88\x7c\xca\x5a\x4d\xb1\x2c\x8e\x82\x25\x9c\x20\xd8\xfe\x4e\x78\xf9\x57\x2f\xfd\x6a\x83\x4d\x3e\x67\xda\xf0\xc3\x02\x88\xfc\x0d\x82\xfe\x5b\x82\xfd\xd3\x8f\xad\xcf\x47\x84\x26\x42\x22\xf7\xd4\xc7\x0f\xe7\x60\x8a\x05\x10\xa0\x20\x3c\x8c\x65\xc8\xa2\x86\x09\x40\x9a\xb2\xb3\x2d\x0b\x60\x1b\x13\x2f\x0c\x60\x09\x2a\xbf\x6d\x4c\x46\x11\xca\x1d\xe3\xaf\xa3\x30\x50\x9f\xa5\xbf\x16\xb0\x84\x0d\xf2\x35\x7e\x53\x6b\xab\xc0\x7d\x9a\x2b\x80\xfd\xa7\xbf\x41\xfb\xbc\x44\x3f\xbe\x5b\x1f\xc7\xe9\xf0\x78\x42\xb1\xc0\x89\x23\xc4\x4b\xc6\x4b\x69\xe4\x67\xc2\xc5\xf8\x68\x3f\x35\x4f\xff\x3d\x3e\xe4\x33\x8c\xd6\x1c\x85\x50\xf9\xc4\x9c\x49\x46\x18\xd5\x5f\x24\x89\x55\x74\xc5\xd9\xc6\x8b\x19\x97\x69\x74\x32\x51\x4b\xb0\x3c\xf0\x19\x22\x61\xc0\xbd\x67\xca\xc8\xab\xe2\xe6\x5f\xdb\x1d\xa5\xff\x3f\xbb\xf6\x7f\x2d\x40\xa2\x24\x41\x57\x28\x9b\x30\xd6\x21\x5c\xc2\x64\x3a\x5f\x14\x10\xaa\xd0\xa3\x9b\x66\x42\x57\xf9\x8a\x92\x27\xa8\x60\xdd\xc1\x6f\x94\xb2\x1d\xfc\xc5\xd9\x06\xe5\x0b\x26\x02\x24\x03\x41\xb8\x1f\x23\x28\x10\xb0\x41\xc9\x43\x22\xda\x10\xe0\xe8\xb9\xdd\x6d\x77\xe1\xaf\x79\xef\xcb\xc3\x6a\x84\x50\x1a\x32\x99\x3e\x8e\x4b\xba\xa8\x1f\x91\x91\x50\xc6\xdf\x04\x46\x15\x5d\x06\xc4\x5c\x42\x7e\x1c\x0a\xe4\xdb\xfc\x14\x19\xa6\x5a\x1e\x66\xb3\x69\xa5\x5e\x74\xf0\x44\xc5\x1c\x95\x56\xc4\x02\x74\xf0\x4d\x2d\x8a\x1c\x02\x1f\x37\x2c\x12\x28\x4d\x39\x2a\x2c\x73\x03\x32\x5b\x8c\x5d\xf7\xb8\xcc\xf4\x88\x0b\x64\x76\x94\xf7\xd7\xe4\x19\x9d\x98\xb3\xb7\xf7\xd1\x59\x5c\xef\xc7\xdf\x50\x31\x8f\xdd\xc9\x6c\x71\x9c\xe6\x7c\x48\x07\x3c\x7f\xd6\xa9\xa2\xd9\x27\x04\x85\x48\x69\xa6\x28\x05\xac\x18\x07\x7c\x43\x72\x0f\x94\xad\xef\x41\xa5\xe3\xac\x18\xdf\xf9\x3c\x30\xd5\xba\x5e\xf3\x36\xf8\xff\xe5\x84\xcc\xf3\x21\xfd\x1d\xa7\x9a\x3e\x47\xdd\x82\xc3\xdc\xcc\x55\x5a\x0e\x78\xa8\xb9\x9b\x0d\x01\x3e\xaf\xe3\x5b\xd0\xc6\xfc\x54\x65\xce\x2f\xac\x4b\x73\xda\x86\xd4\x44\xe5\xb1\xa6\xf1\x5f\xae\x87\x30\x0e\x07\x17\xc4\xec\xb8\x18\x4e\x1c\x12\xfd\x1e\x10\x8a\xaf\x9e\x94\x30\x2b\xa9\xa0\x7c\x2a\x74\x74\x22\xa4\x88\x28\xae\x7d\xf2\x3e\xb4\x10\x16\x37\xa7\x84\x8c\xb7\x9e\x04\xb1\xe8\x49\x11\x98\xfd\x7a\xb7\x62\x58\x82\x8d\xcd\x1a\x58\x82\xed\x8c\x6b\x2f\x85\x86\x5d\xcf\xc2\x87\xcd\x85\x0e\x17\x3b\x0c\x80\x30\xde\x3e\x78\xe5\x26\xe4\xe9\x69\xdf\x7f\xfc\x93\x6a\xc0\xd4\xbe\xc9\x94\x73\xb6\x75\xa3\x87\x9f\x67\xdb\xec\xea\x32\xba\xb2\x65\xb3\x4f\xf0\x7c\xbb\x26\x9b\x63\x6c\xd5\xec\x8b\xee\x2b\xdb\x34\x1a\xdc\x8b\x94\x66\xf7\x63\x87\xe8\x1e\xcb\xca\xd7\xa1\x6e\xd1\x99\x15\x7a\x87\xf0\xea\x4c\x83\x61\x3d\x03\xcd\x4a\x7b\xbf\xa0\x81\x1d\xb3\xd7\x5e\xa5\xfd\xdf\xf7\xfb\xa6\xde\x9c\x69\x23\xaf\x09\xd8\x4f\xeb\x1f\x7d\xb5\x2d\x3f\xe8\xc3\x5b\xde\x6d\xfa\xe7\x9d\x17\xf4\xa9\x1c\xec\xb0\x52\x5d\xdc\xac\xa2\xf8\x3c\x7a\xa6\xe6\xaf\xea\x23\x1c\x6c\xbf\xa9\x87\xd0\xc8\x53\xf9\x11\xf0\xf5\xfd\x83\xe2\x5b\xe6\x9c\x12\xa3\x28\x8d\x1c\xf0\x22\xcf\xe6\xaf\xc7\xae\x0a\xad\x73\xa3\x41\x03\x33\x35\x19\x06\x10\xcf\x35\x0c\x86\x8a\x70\xcc\x28\x1b\x4a\x07\x1d\x9b\x0b\x1a\x90\xb1\xb1\xd0\xb1\x08\xfa\x6e\x25\x2f\xd9\xfc\x76\xa6\x82\xf1\xee\x5f\xb3\x7d\x3c\x44\xd2\xc2\x4c\xe8\x78\xf3\x7b\x37\x12\x2e\xde\xfd\xb6\x46\x82\xb1\x08\xae\x6a\x22\x68\x44\x2d\x0c\x84\xe3\x02\xf8\xa2\xe6\x81\x61\x4f\xa1\x92\xc8\x48\x21\x2c\x89\x14\xf7\xaa\x0f\x57\x8d\x86\x40\x2f\x1f\x20\xe0\x57\x18\xc3\x13\xb8\x56\xcf\xf7\xc0\xd4\x75\x2b\x7d\xc7\x74\x32\x7f\x98\xd7\xeb\xe1\xff\x00\x00\x00\xff\xff\x15\x73\x39\xd8\x24\x23\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x4f\x6f\xbb\x38\x10\xbd\xf3\x29\x46\x74\x0f\xad\x54\xb2\xe4\xcf\x36\x4d\xa5\x68\xb5\xda\xc3\xde\x56\x2b\xed\x61\x0f\xab\x9f\x10\x35\x93\x14\x95\x60\x64\x9b\xa4\x51\xd5\xef\xfe\x93\xc1\x84\x40\x80\xc4\x09\x81\x26\xbd\x0d\xb6\x3b\xef\xf9\x8d\xed\x37\x77\xf0\x2f\x92\x98\xf9\x62\x0b\x7f\x31\x1a\x47\x1c\xee\xfd\x90\x0b\x37\x24\x08\x0b\x9f\xe1\xc6\x0d\x02\xfe\x60\x18\x77\xf0\x27\x0d\x05\xa3\x41\x80\x0c\x78\x36\x65\x29\xa7\x18\x06\x43\x4e\x63\x46\x10\x4c\x77\xc3\x9d\xec\xab\x93\x7c\x35\xc1\x24\xbb\x99\x26\x7c\x1a\x00\xa1\xbb\x42\x50\xbf\x39\x98\xbf\x7c\xae\x5d\x36\x20\x41\xcc\x05\x32\x47\x7e\xfc\xb2\xf6\xa6\x18\x00\x1e\x72\xc2\xfc\x48\xf8\x34\xac\x99\x00\xa4\x2e\x3b\xd3\x30\x00\xd6\x11\x71\x7c\x0f\xe6\x20\xf3\x5b\x47\x64\x10\xa2\xd8\x50\xf6\x3e\xf0\x3d\xf9\x59\xb8\x4b\x0e\x73\x58\x21\x5b\xe2\xbd\x5c\x5b\x06\x1e\x93\x5c\x01\xcc\xbf\xdd\x15\x9a\xa7\x25\xfa\xf5\x60\x7c\x35\xd3\xe1\xb0\x38\xc0\x02\x27\x16\xe7\x6f\x29\x2f\xa5\x91\xbb\x84\x8b\xf1\x41\x3e\x35\x4b\x7f\x1b\xed\xf3\xe9\x87\x4b\x86\x9c\xcb\x7c\x22\x46\x05\x25\x34\x50\x5f\x04\x89\x64\x74\xc1\xe8\xca\x89\x28\x13\x49\x74\x34\x92\x4b\xd0\x2c\xb0\x0b\x11\xdf\x63\xce\x6b\x40\xc9\xbb\xe4\xe6\x7f\xd3\x1e\x24\x7f\xbf\xda\xe6\x8f\x33\x40\xa2\x20\x5e\x5b\x28\xeb\x30\x56\x21\x9c\xc3\x68\x3c\x9d\x15\x10\xca\xd0\xb3\x9d\x64\x12\x2c\xb2\x15\x05\x8b\x51\xc2\xba\x83\x3f\x82\x80\x6e\xe0\x1f\x46\x57\x28\xde\x30\xe6\x20\x28\x70\xc2\xdc\x08\x41\x82\x80\x15\x0a\xe6\x13\x7e\x0e\x01\x96\x9a\xdb\xde\x76\x17\x7e\xf5\x7b\x5f\x1e\x56\x21\x84\xd2\x90\xd1\xf8\x79\x58\xd2\x45\xf5\x88\x94\x84\x32\xfe\x3a\x30\xb2\xe8\x52\x20\xfa\x12\x72\x23\x9f\x23\x5b\x67\xa7\x48\x3f\xd5\xf2\x34\x99\x8c\x0f\xea\x45\x05\x8f\x54\x4c\xa3\xb4\x42\xea\xa1\x85\x1f\x72\x51\x64\xe0\xb9\xb8\xa2\x21\x47\xa1\xcb\x51\x61\x99\x1b\x90\xd9\x6c\x68\xdb\xcd\x32\x53\x23\x2e\x90\x59\x23\xef\xef\xf1\x2b\x5a\x11\xa3\x1f\xdb\xc1\x49\x5c\xe7\xe3\x6f\xa8\x98\x87\xf6\x68\x32\x6b\xa6\x39\x1b\xd2\x02\xcf\xbb\x3a\x95\x34\xbb\x84\x20\xe7\x09\xcd\x01\x0a\x0e\x0b\xca\x00\x3f\x90\x3c\x42\x40\x97\x8f\x20\xd3\xb1\x16\x94\x6d\x5c\xe6\xe9\x6a\x5d\xad\x79\x1b\xfc\xff\x76\x44\xe6\xd9\x90\xee\x8e\x53\x45\x9f\x25\x6f\xc1\x7e\x6e\xe6\x43\x5a\xf6\x78\xa8\xb8\x9b\x35\x01\xbe\x2e\xa3\x5b\xd0\xc6\xf4\x58\x65\x4e\x2f\xac\x4b\x7d\xda\xfa\xd4\xc4\xc1\x63\x4d\xe1\xbf\x5c\x0f\x7e\xe4\xf7\x2e\x88\x49\xb3\x18\x8e\x1c\x12\xdd\x1e\x10\x92\xaf\x8e\x94\x30\x29\xa9\xa0\x7c\x2a\xb4\x74\x22\x24\x88\x02\x5c\xba\x64\xdb\xb7\x10\x66\x37\xa7\x84\x94\xb7\x8e\x04\x31\xeb\x48\x11\x98\xfe\xf7\x76\xc5\x30\x07\x13\xeb\x35\x30\x07\xd3\x1a\x56\x5e\x0a\x35\xbb\x9e\x86\xf7\xcd\x85\x0a\x17\x1d\x06\x80\x1f\xad\x9f\x9c\xb2\x09\x79\x79\xc9\xfd\xc7\x7f\x89\x06\x74\xdb\x37\xa9\x72\x4e\x6e\xdd\xa8\xe1\xa7\xb5\x6d\x36\x55\x19\x5d\xb9\x65\x93\x27\x78\x7a\xbb\x26\x9d\xa3\xdd\xaa\xc9\x8b\xee\x3b\xb7\x69\x14\xb8\x37\x21\xf4\xee\xc7\x16\xd1\x8d\x6d\xfb\xb9\x2c\xfe\x3c\xda\x2e\x46\xbd\x72\x6f\x15\x64\x55\xf3\x20\x8b\xf6\xd5\x3d\x50\xcc\x9c\xdf\x39\xa8\x61\x48\xef\xdd\x77\xd0\x08\xc8\x9d\xbf\x6e\x97\x4e\xd7\xd2\x2b\x02\xf2\x69\xdd\xa3\x3f\x34\xe8\x7b\x8e\xbc\x01\xff\x55\xad\xf6\x1e\x2f\xba\x36\xbb\xb6\x68\xca\xf7\xe4\xf7\xb7\xd8\xc5\xeb\xfe\x14\xed\x05\x28\xb4\x9a\xc4\x45\x9e\xf5\x1f\x58\x6d\x29\xb0\x75\x2f\xae\x80\xe9\xfa\xf0\x1e\xc4\x73\x0d\x0f\x7e\x20\x1c\x3d\xca\xfa\xd2\x41\xcb\xfe\x5b\x01\xd2\xf6\xde\x2d\x8b\xa0\x6b\xb7\x75\xc9\xe6\x9f\xe7\xbb\xb5\x77\xff\x9a\x0e\x6b\x1f\xc9\x19\x7e\xbb\xe5\xcd\xef\xdc\x6b\x5f\xbc\xfb\xe7\x7a\x6d\x6d\x11\x5c\xd5\x67\x2b\x44\x67\x78\xec\x66\x01\x7c\x53\x7f\xad\xf9\xd8\x96\x49\xa4\xa4\x10\x1a\x87\x92\x7b\x69\x55\xe5\x0b\x9c\xa3\x93\x0d\xe0\xf0\x3b\x0c\xe1\x05\x6c\xa3\xe3\x7b\x60\x6c\xdb\x07\x0f\xf2\xf1\x68\xfa\x34\xad\xd6\xc3\xcf\x00\x00\x00\xff\xff\x55\xca\x5c\xea\x47\x22\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf": &vfsgen۰CompressedFileInfo{ name: "ssh.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2792, + uncompressedSize: 2772, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4f\x6f\xdb\x3e\x0c\xbd\xe7\x53\x10\xee\xef\xf4\x43\xed\x74\x58\xbb\x43\x81\x1c\x0b\xec\xb0\xad\x40\xbb\x5b\x51\x18\xae\xc4\xa4\x42\x6c\xd1\x20\xe9\xb4\xc1\xd0\xef\x3e\x48\xb6\x97\x3f\x70\xfe\x0c\xf0\x2e\x6e\xad\xbc\xc7\xa7\x27\x93\x14\x2f\xe0\x11\x4d\xc3\x08\x86\xea\x35\xa0\x1a\x0b\x3f\xbf\x3d\x42\x21\x82\x2a\xa0\x04\x86\xbc\x32\x95\x25\xb2\x64\x13\x46\xa1\x86\x0d\x42\xe2\x9b\xb2\xcc\xfb\xd7\x04\x92\x40\x4f\x37\xd8\x54\xd0\x30\xaa\x24\xf0\x6b\x02\x60\xa8\xf1\x0a\x33\x58\x15\x9c\x6d\x30\x79\x5c\x9e\xc4\xdf\xbd\x47\xa3\x8e\x7c\x84\x03\xe8\xba\xc6\xf0\x77\x06\x89\xc8\x6b\x12\xd7\x5e\x49\xb4\x5d\x2b\xde\x24\x77\x5e\xb4\xf0\x06\xb7\xe2\xc9\x53\x0c\x98\x39\x6f\xf1\xfd\x39\xab\x9b\x97\xd2\x99\xdc\xd5\x91\xdd\x08\x72\x17\xd1\x10\x63\x1b\x52\x5d\x85\xd4\x84\x9d\x25\x9f\x6e\xaa\xb0\xf6\x11\xb6\x53\x33\xad\x9c\x38\xf2\xc8\x90\xcc\x5d\x89\x49\xb7\xad\xa0\x85\x3e\xee\x02\x66\x50\x91\x6d\x4a\xcc\x5e\x88\x74\xd9\xbc\x60\x16\x0e\x2f\x37\x45\x6e\x90\x35\xc2\x2d\x8a\x3a\x5f\x44\x5f\x33\x48\xfe\xfb\x7a\xff\xfd\x6e\x1a\x50\xa9\x29\x1d\x7a\x4d\x4d\x91\x19\xd6\x71\x74\x63\xc4\xf3\xb5\xc7\x16\x5e\xe2\xfa\x3c\xdd\x25\xae\x47\xd1\x15\xe4\x55\xc8\xa1\xd3\x86\x5b\xe4\x68\x86\x3b\xe1\xd3\x86\x3b\xdd\xb1\x0c\xd7\x78\x9e\xdd\x80\x1b\xcd\x6c\x14\x3d\x6d\x35\x6a\x8e\x60\x34\x3c\x0c\xf9\xb9\x5b\xa4\xe1\xdf\x12\x8f\x98\xdd\x60\x87\x55\x19\x2b\x52\x4c\xf1\x1d\x4d\x2f\xee\x7c\xe9\x3c\xc2\x0c\x9e\xe2\x2b\x40\x22\x8d\x25\xa8\x56\xb0\x1f\x12\x82\xaf\xf8\xce\x1e\x15\x65\x5b\xed\x72\x87\x6c\x5e\xe9\xcd\x03\x13\xe9\x6d\x78\xfc\x0d\xb1\x22\x0b\x5f\xae\xaf\xcf\xa7\x54\x4b\xeb\x18\xd2\xba\x65\x88\x94\xf1\xf4\xe3\x63\x1f\xb9\x82\xad\xa2\xfb\x7f\x8f\xb0\xbf\x93\xa1\x80\xbb\x3d\x6a\x00\x30\x6d\xf3\xbb\x6f\x62\xc3\xfa\x9b\xda\x3b\x1c\xe1\x34\x7d\x89\xeb\x23\xf4\x90\x77\xa3\x18\x0a\x59\x7c\xdc\x4e\x5f\x5b\x87\xd8\xa7\xa8\x07\x8c\xfc\x29\x9f\xa1\xd4\x4a\x1f\x62\x80\xdb\x78\x37\xef\x90\x07\x13\x2a\x7d\x80\x9b\xab\xab\x41\xe0\x73\x5f\x27\xca\x6e\xb1\x40\x16\x98\x6d\x55\x65\x77\x29\x3b\x7b\xf6\x0d\xeb\x6c\x0c\xf8\x31\x99\xec\x4e\x11\x7d\x39\x6f\x4d\x11\xf7\x3f\xee\xb6\x44\xa0\xf0\x16\x44\x0b\xd6\x0d\x56\x09\x6a\xe4\x39\x71\x35\xb9\x00\xf2\x98\x86\xcb\x19\x04\xcb\x79\x1a\x6e\x7e\xb4\x60\xca\x46\x14\x39\x52\x44\xb9\xa8\x6b\xe7\x17\xc7\x66\x92\x3e\x76\x1a\xa5\xda\x26\x60\xb1\x46\x6f\x25\x8f\x9d\xa4\x6d\x03\x7b\x4d\xe8\x72\x7b\xf1\x8d\x78\x89\x2c\xed\x5a\x38\x15\xa6\x46\xf1\xe6\x73\xce\x68\x88\x6d\x56\xd4\xae\xcd\xc2\x16\xb1\xb3\x83\xec\xc0\x4c\x14\xa0\xcf\x63\x8e\x3d\x57\xff\x64\xd8\xe9\x4e\xb5\xeb\xd4\x61\x74\x8b\x9f\x33\xb7\x8e\x0f\x37\xe5\xf6\x8b\x8f\xd6\x90\xbb\x04\x9a\x52\xad\xd3\xfe\xfb\xec\x65\xbd\xac\x45\xb1\x32\x5a\xee\x25\xd4\x4e\xce\x7f\x4c\x7e\x07\x00\x00\xff\xff\xb5\x31\xf0\xd1\xe8\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x10\xee\x4e\xc3\xec\x74\x58\xbb\x43\x81\x1c\x0b\xec\xb0\xad\x40\xbb\x5b\x51\x18\xae\xc4\xa4\x42\x6c\xd1\x20\xe9\xb4\xc1\xd0\xff\x3e\x48\xb6\x97\x0f\x38\x1f\x03\xbc\x8b\x5b\x2b\xef\xf1\xe9\xc9\x24\xc5\x0b\x78\x40\xd3\x30\x82\xa1\x7a\x0d\xa8\xc6\xc2\xaf\xef\x0f\x50\x88\xa0\x0a\x28\x81\x21\xaf\x4c\x65\x89\x2c\xd9\x84\x51\xa8\x61\x83\x90\xf8\xa6\x2c\xf3\xfe\x35\x81\x24\xd0\xd3\x0d\x36\x15\x34\x8c\x2a\x09\xfc\x9e\x00\x18\x6a\xbc\xc2\x0c\x56\x05\x67\x1b\x4c\x1e\x97\x27\xf1\x77\xef\xd1\xa8\x23\x1f\xe1\x00\xba\xae\x31\xfc\x9d\x41\x22\xf2\x92\xc4\xb5\x17\x12\x6d\xd7\x8a\x57\xc9\x9d\x17\x2d\xbc\xc1\xad\x78\xf2\x18\x03\x66\xce\x5b\x7c\x7b\xca\xea\xe6\xb9\x74\x26\x77\x75\x64\x37\x82\xdc\x45\x34\xc4\xd8\x86\x54\x57\x21\x35\x61\x67\xc9\xe7\xeb\x2a\xac\xbd\x87\xed\xd4\x4c\x2b\x27\x8e\x3c\x32\x24\x73\x57\x62\xd2\x6d\x2b\x68\xa1\x8f\xbb\x80\x19\x54\x64\x9b\x12\xb3\x67\x22\x5d\x36\xcf\x98\x85\xc3\xcb\x4d\x91\x1b\x64\x8d\x70\x8b\xa2\xce\x17\xd1\xd7\x0c\x92\x0f\xdf\xee\x7e\xdc\x4e\x03\x2a\x35\xa5\x43\xaf\xa9\x29\x32\xc3\x3a\x8e\x6e\x8c\x78\xbe\xf6\xd8\xc2\x4b\x5c\x9f\xa7\xbb\xc4\xf5\x28\xba\x82\xbc\x0a\x39\x74\xda\x70\x8b\x1c\xcd\x70\x27\x7c\xda\x70\xa7\x3b\x96\xe1\x1a\xcf\xb3\x1b\x70\xa3\x99\x8d\xa2\xa7\xad\x46\xcd\x11\x8c\x86\x87\x21\x3f\x77\x8b\x34\xfc\x5b\xe2\x11\xb3\x1b\xec\xb0\x2a\x63\x45\x8a\x29\xbe\xa1\xe9\xc5\x9d\x2f\x9d\x47\x98\xc1\x63\x7c\x05\x48\xa4\xb1\x04\xd5\x0a\xf6\x43\x42\xf0\x15\xdf\xd9\xa3\xa2\x6c\xab\x7d\xda\x21\x9b\x17\x7a\xf5\xc0\x44\x7a\x13\x1e\xff\x42\xac\xc8\xc2\xd7\xab\xab\xf3\x29\xd5\xd2\x3a\x86\xb4\x6e\x19\x22\x65\x3c\xfd\xf8\xd8\x47\xae\x60\xab\xe8\x3e\xee\x11\xf6\x77\x32\x14\x70\xb7\x47\x0d\x00\xa6\x6d\x7e\xf7\x4d\x6c\x58\x7f\x53\x7b\x87\x23\x9c\xa6\x2f\x71\x7d\x84\x1e\xf2\x6e\x14\x43\x21\x8b\x8f\xdb\xe9\x6b\xeb\x10\xfb\x14\xf5\x80\x91\xbf\xe5\x33\x94\x5a\xe9\x7d\x0c\x70\x13\xef\xe6\x1d\xf2\x60\x42\xa5\xf7\x70\x7d\x79\x39\x08\x7c\xea\xeb\x44\xd9\x2d\x16\xc8\x02\xb3\xad\xaa\xec\x2e\x65\x67\xcf\xbe\x61\x9d\x8d\x01\xdf\x27\x93\xdd\x29\xa2\x2f\xe7\xad\x29\xe2\xee\xe7\xed\x96\x08\x14\xde\x82\x68\xc1\xba\xc1\x2a\x41\x8d\x3c\x27\xae\x26\x17\x40\x1e\xd3\x70\x39\x83\x60\x39\x4f\xc3\xcd\x8f\x16\x4c\xd9\x88\x22\x47\x8a\x28\x17\x75\xed\xfc\xe2\xd8\x4c\xd2\xc7\x4e\xa3\x54\xdb\x04\x2c\xd6\xe8\xad\xe4\xb1\x93\xb4\x6d\x60\xaf\x09\xb5\x67\x15\x4e\x80\xa9\x51\xbc\xfe\x92\x33\x1a\x62\x9b\x15\xb5\x6b\x33\xae\x45\xec\xa8\x65\x07\xe6\x9f\x00\x7d\x1a\x73\xc4\xb9\xfc\x2f\x83\x4d\x77\x82\x5d\x57\x0e\x63\x5a\xfc\x74\xb9\x75\x7c\xb8\x01\xb7\x5f\x77\xb4\xe6\xdb\x25\xcb\x94\x6a\x9d\xf6\xdf\x62\x2f\xc3\x65\x2d\x8a\x95\xd1\x72\x2f\x79\x76\xf2\xfb\x7d\xf2\x27\x00\x00\xff\xff\x38\xd5\x71\x30\xd4\x0a\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 4911, + uncompressedSize: 4000, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdb\x6e\x1b\x39\x12\x7d\xd7\x57\x14\x94\x87\xd8\x80\xdc\x96\xe4\x6c\x2e\x83\xc9\x83\x2c\x67\x67\xbc\x93\xd8\xde\x28\x1e\x03\xb3\x58\x34\x28\xb2\xba\x9b\x30\x9b\xe4\xb2\x48\x29\xca\x62\xfe\x7d\x41\x76\x5b\xd6\xa5\x35\x6b\x4f\xc6\x7e\xb0\xac\x66\x9d\x73\xea\xc2\x62\xb1\x17\xcc\x49\x36\x57\x08\x7d\xae\x02\x79\x74\xb9\x66\x35\xf6\xe1\xbf\x3d\x00\xbf\xb2\x08\xed\xcf\x7b\x20\xef\xa4\x2e\x7b\x00\x02\x89\x3b\x69\xbd\x34\x1a\xde\x43\xff\x56\xcb\xff\x04\x84\xd6\x1c\xa2\x39\x1c\x59\x87\x16\xb5\x40\x01\xde\x80\xd0\x94\x7f\x33\x1a\x8f\xfb\xbd\xdf\x7b\xbd\x17\x30\xb9\x9b\xf5\x7a\x8f\xc4\x0f\x8f\x9f\x43\x3a\xb9\x9b\xc1\x67\x13\x3c\xfe\xed\x0c\x2e\xae\x66\xf0\x9b\xd1\x08\x47\x98\x95\x19\xb0\x25\x65\xf8\x95\xd5\x56\x61\xc6\x4d\xdd\x90\xee\xb3\xe5\x52\x7c\x37\xe1\xe5\x45\xcb\xf9\xdb\xd9\xcd\x64\x72\x7e\x3e\xfd\xfb\xe4\x97\x0f\xd3\xe1\x2e\x25\x7e\xb5\x86\x30\xd7\x46\xa0\x35\xce\x53\x17\xef\xdc\x18\x95\x58\x0b\x16\x94\x6f\xbf\x2c\x98\x22\xdc\xd7\xf2\x21\xe1\x41\xc4\x83\x04\x08\x67\xc3\xe1\x70\x78\x72\x36\x7e\xf3\xfa\x0d\x48\x0d\xbe\x42\x20\xe4\xc1\x49\xbf\x82\xd2\x99\x60\xdb\xc8\x4b\x4d\x9e\x69\x8e\xb4\x29\x8f\x1b\xed\x9d\x51\x0a\x5d\xce\x4d\xd0\xbe\x4b\x9e\x0e\xf5\x1c\xdd\x9e\xc0\xd1\xbe\xb8\xab\xb4\x12\x4c\x01\x8f\xb8\x04\x47\x32\xc3\x0c\x6a\x16\x4b\x84\x76\xe3\xb3\x34\xee\xfe\xaf\x26\x6f\x30\x69\x87\x69\xc3\xd5\x48\xb1\x41\xb6\x91\xf9\x17\x70\x57\xa1\x06\x61\xa4\x2e\x53\x28\x83\x2d\x1d\x13\x48\x1b\x4e\x59\xc5\x34\x82\xd1\xe0\xcf\x32\xaa\x99\x52\xeb\xd0\x36\x70\xcb\x0a\x75\x82\xaa\xd8\x22\xc2\xc4\x6a\x21\xa9\x4b\x85\xdb\x08\x31\x87\x83\x47\x90\x8a\x11\x68\xe3\x01\xb5\x09\x65\x05\x35\xd6\xc6\xad\xe0\x68\xfc\xd3\xf9\x71\x42\xf3\x06\x5c\xd0\x50\x1b\x87\xe0\x2b\xa6\x13\xee\x9a\xd9\x14\x70\x1f\xe6\x78\xc2\xac\x24\x74\x0b\x74\xb1\x16\x2c\x73\x4c\x29\x54\x03\x20\x03\x4b\x04\x8d\xcd\xa6\x0c\xa9\xb2\x5e\x00\x83\xb9\x2c\xcb\xb4\xb6\x81\xc9\xe0\x4e\xfa\x0a\x7e\x9e\x6c\x29\xdd\x10\x49\x95\x09\x4a\xc0\x1c\xa1\x90\xe9\x41\x95\xc4\x16\xc6\x25\x40\xeb\x8c\x08\x3c\x65\x84\xd0\x07\x4b\x03\x90\xfe\x25\x81\x43\x6e\xea\x7a\xdd\x14\x02\x3d\x2a\x27\x58\x46\xca\xe4\xd6\xe7\xc9\xa7\x01\x78\x93\xa0\x4a\xb9\x40\xb0\x0a\xb5\x5f\x45\xe7\x02\xa5\x2c\xb6\x51\x29\x8c\x03\xf4\x5c\x00\xd3\x62\xc7\xef\x6c\xaf\x56\xfa\xfe\x2c\xab\x51\xc8\x50\xf7\x3b\xf6\xd3\x74\xbc\x93\xbe\x88\xbd\x51\xbe\xdd\xf5\xba\x53\x41\x5d\x2d\x64\x57\x42\x0a\xe0\x93\x15\x74\xd7\xb0\xa1\xa7\xb4\xe8\x2d\xe6\x42\x31\xcf\x99\xeb\x20\xbe\x8a\xdd\xda\x14\x70\x6d\xd1\x31\x1f\x2b\x75\xb6\x22\x8f\x35\x1c\x71\xe3\xd0\x10\x18\x07\xad\xf5\xee\xae\x35\x94\xf3\x8a\x69\x8d\xea\x39\x52\xc8\x47\xeb\x0e\x25\x93\x4f\x97\xd0\xe2\x25\xe7\xe3\xc6\xbb\x9e\xc1\x51\x63\x30\x80\x39\x7a\x36\x00\xa6\x6c\xc5\x06\x80\xa2\xc4\x0e\x3d\x0b\x74\x24\x8d\x7e\x8e\x1e\x1e\x9c\x43\xed\x3b\x04\xfd\xda\x80\xc5\xe8\x3c\x68\x69\x17\xc7\xa0\xe8\x50\xa3\x93\x1c\x5a\x4a\xa0\xc0\x2b\x60\x04\xe3\xf1\xeb\x51\xf6\xee\x5d\xb6\x77\x08\x08\x49\xf7\x39\xc9\x6f\x9d\x89\x3b\xd0\xe1\x5e\x0d\xf7\x65\xcd\xe4\x37\x7c\xd0\xf4\xe1\x7c\x06\x0b\xa3\x42\x1d\xb7\x12\xfc\x74\xde\x45\xf9\xdc\x2a\x2d\xed\xb8\x23\x18\x5f\xa2\xed\x3e\x6b\x73\xfa\xc5\xba\x15\xcc\x89\x01\x94\x76\x3c\x00\x69\x46\x9d\xce\x4b\x63\x3b\x8f\xbe\x03\xce\x77\xf8\x7e\x79\x7d\x33\x3b\xa8\x62\x34\xdc\x8b\x79\xbb\x51\xad\x93\xfc\x59\x31\xe8\x08\xc0\xcc\x1a\x0f\x09\x28\x86\xfa\x76\x76\x91\x8a\x94\x05\x6f\x88\x33\x15\x37\x4e\x3a\x67\x81\xe2\xba\x75\x5f\xcb\xe0\x23\xb2\x05\xc6\xc2\x78\xa0\xc0\xda\xfa\x55\xcb\x7c\x00\xa3\xed\x8e\x46\x9f\x08\xac\x63\x77\xdb\xc0\xbb\x32\x1e\x07\x40\x4b\xe9\x79\x15\x2d\xa4\x3e\xb1\x8a\x71\x84\xc2\x99\xba\x61\xf7\x66\xd3\xb4\x39\x50\xac\x21\x92\x73\x85\x3f\x40\xe5\xbd\xa5\x1f\x4e\x4f\x4b\xe9\xab\x30\x8f\x13\xd2\xa9\x47\xe7\x58\x61\x5c\x7d\x62\x9d\x59\x48\x81\x8e\x3a\xbe\x3b\x61\x4b\x3a\x95\x44\x01\xe9\xf4\xd5\xd9\x78\x78\xa0\x29\x32\x57\xa2\xcf\x93\x23\x9d\xd9\x56\x92\xfc\x51\xe3\xfe\x71\x47\x17\x10\x42\xc6\xcf\x4c\x41\x83\xd4\x86\x64\xf2\xf9\x8a\xa2\x63\xcb\x4a\xf2\xaa\x6d\x8c\x1b\xc7\xc7\xe3\x91\xc4\x84\x40\xd1\xdf\x4b\xe9\xbf\xfe\x7d\x70\x10\xe0\x8a\xe7\xa4\xa5\xb5\xd8\x3d\x99\xfd\xb1\xe0\xe9\x1a\x08\xe2\x47\x26\x35\x3a\xf8\x28\x75\xf8\x1a\xff\x2f\x64\x09\x6b\xec\xff\x2b\xea\x61\x0e\xfa\x2e\x41\x77\x4d\x6c\xbe\x5b\x8c\x67\x25\x6d\xcd\x47\x35\xb3\x1b\x46\xef\xd3\x23\x80\xfe\x27\xa6\x59\x89\xe2\x7c\xd5\x8f\xec\x1f\xcd\xbd\xa9\x8d\x97\x8b\xd4\xe2\x01\xfa\x53\x87\xcc\xaf\x1f\xdf\x6a\xb2\xc8\x65\x21\x9b\x1c\xfd\xbe\x2f\xff\xda\xb6\xe9\x17\xe8\x99\x54\x29\xe9\x9e\xc5\x01\x2a\x5e\x1b\xc0\x21\x99\xe0\x38\x52\x3b\xd0\xf2\xe4\x56\x88\x67\x97\xd1\x9b\xf2\x89\xaa\xfc\x1e\x57\x7f\x22\x80\xb3\xd9\xcf\x60\xc3\x5c\x49\x0e\x11\x20\xed\xd1\x40\xe8\xe0\x65\x3c\x12\x5f\xee\x94\x3d\x23\x42\x9f\x0b\xe9\x1a\xa2\x1d\xac\x1b\xe6\xab\xe8\x01\x03\x21\x1d\x72\x1f\xe7\x96\x65\x85\x0e\xa1\x44\x1d\x4f\x5c\x14\x90\x10\x36\x4b\x38\xed\x67\x11\x4f\xe0\x94\x42\x8a\xa3\xbc\x43\x1f\xc7\xe6\x03\x0d\x6c\x4b\x91\x46\x1f\x0b\x29\xaf\x7d\xe8\xd4\x34\xbd\xba\x04\xa9\x3d\xba\x22\xb6\x8d\x4f\x5f\x6e\x33\xb8\x25\x84\xb7\xef\xde\x8e\x40\xc6\x21\xab\x69\x2b\x0f\x5b\x2b\x12\xb6\xf3\xd9\x3f\x42\x3d\x37\x50\x38\x56\x23\x65\xfb\x62\x0e\x8d\xe9\xaf\xde\x0e\xb7\x15\x56\x86\x7c\xce\xa5\xe8\x8e\xd9\xf4\xf2\xe2\x33\x5c\xde\x2c\x5e\x81\x63\xba\xc4\x14\x3e\x22\x59\xea\xf8\x29\x0e\x4a\x71\x66\xa6\x83\xb1\xd8\x6b\xe6\xa3\x61\x96\x7e\x4f\x47\xaf\x77\x72\x67\x8d\xf8\x33\x32\x7e\x09\x73\x74\x1a\x3d\x12\x58\x23\x9e\xa7\x64\xdc\xad\x24\x8e\xad\x92\xe3\x41\x35\x3f\xfe\xf8\xe1\xfa\xa2\xf7\x24\x49\x2d\x14\x65\xbd\x2f\x15\xc2\x88\x3c\x5c\xde\xc0\x52\x2a\x15\x4b\xcb\x61\x1a\x90\x45\x2a\xea\x38\x33\xe7\xeb\x99\x79\x90\x4e\xd5\xd1\xd0\x57\x07\x0d\x62\xfd\x0b\x4d\x59\x2f\x8a\xe9\x6d\xb8\xdd\xe1\x72\xe3\xee\x59\xb7\xbb\x0f\xaf\x1a\x84\xa9\x99\xd4\x39\x85\xa2\x90\x5f\x3b\xb3\xf0\xcf\x80\x4e\x62\xb3\x09\x9b\xd5\x6d\x2d\xa6\x2b\x6e\xb2\x5b\x6b\x65\x9a\x96\xe8\x50\xc0\x7c\xb5\x96\x0a\x17\xad\x1e\x49\x0f\x6f\x28\x32\x65\x38\x53\xed\xd0\x50\x18\x93\xb5\x92\x33\x5a\xf0\x6c\x6b\xcd\x31\x3c\x3d\xb7\x5b\x86\xbb\xf7\x7f\x1d\xff\xe6\x2e\xdd\xfe\xa5\x2e\xff\xf0\xfe\xbf\x7d\x2f\x48\x96\xf1\xe2\x53\x62\x9c\x3a\x99\x66\x6a\xe5\x25\x8f\xb7\xa9\x16\x2c\x4d\x0b\x96\xbc\x43\x56\x13\x1c\x4d\x99\x92\xdc\x1c\xef\xf7\xf7\xe6\x5d\x42\x97\x2e\x56\x96\x0e\xcb\xd4\x41\x3b\x73\xd0\x8a\x88\x11\xdf\xa8\xb3\xc9\xa3\x15\x7c\x64\x2b\x74\x70\xd4\x12\x36\x3d\xdb\x05\xec\x68\x58\x9d\xaf\x39\xe2\xda\xa6\x9d\x4f\xd1\x79\x59\x48\xce\xfc\xce\x2b\x0a\x74\x9e\xf2\x05\x53\x52\x48\xbf\xca\x2d\x3a\x69\x44\x5e\x99\xe0\xa8\x53\xf2\xaf\xed\xca\x38\x2c\xc6\x2b\x6b\xd4\xce\x37\xb0\xe3\x0c\xd7\x58\x3f\xb5\x8b\xbd\x7d\xf3\x3a\x76\xb1\xff\x05\x00\x00\xff\xff\x52\x45\xb7\x4f\x2f\x13\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x18\xb8\x0f\x75\x00\x57\xc7\x76\x7a\xd2\x14\x68\x1f\x1c\x27\xa7\xcd\x69\x73\x39\x75\xd3\x00\x3d\x58\x08\x34\x39\x92\x88\x50\xa4\x96\x43\xda\x71\x17\xfd\xef\x0b\x52\x8a\xe3\x8b\xbc\x9b\x74\xdb\x87\x28\x11\xe7\x9b\x6f\x2e\xfa\x66\x38\x67\x56\xb2\x99\x42\xe8\x72\xe5\xc9\xa1\x4d\x35\x2b\xb1\x0b\x7f\x74\x00\xdc\xb2\x42\x68\xfe\xbd\x07\x72\x56\xea\xbc\x03\x20\x90\xb8\x95\x95\x93\x46\xc3\x7b\xe8\xde\x68\xf9\xbb\x47\x68\xcc\x21\x98\x43\xaf\xb2\x58\xa1\x16\x28\xc0\x19\x10\x9a\xd2\x1f\x46\xe3\x41\xb7\xf3\xb3\xd3\x79\x01\xe3\xdb\x69\xa7\xf3\xe8\xf8\xe1\xf5\x73\x9c\x8e\x6f\xa7\xf0\xc5\x78\x87\xff\x3e\x84\xd3\xcb\x29\x7c\x37\x1a\xa1\x87\x49\x9e\x00\x5b\x50\x82\xf7\xac\xac\x14\x26\xdc\x94\xb5\xd3\x5d\x6f\xa9\x14\xff\xd8\xe1\xf9\x69\xe3\xf3\xfb\xe1\xf5\x78\x7c\x72\x32\xf9\xcf\xf8\xd3\xd9\x64\xb0\xed\x12\xef\x2b\x43\x98\x6a\x23\xb0\x32\xd6\x51\x9b\xdf\x99\x31\x2a\x7a\xcd\x98\x57\xae\xf9\x63\xc6\x14\xe1\x2e\x97\xb3\x88\x07\x01\x0f\x22\x20\x1c\x0e\x06\x83\xc1\xab\xc3\xd1\x9b\xa3\x37\x20\x35\xb8\x02\x81\x90\x7b\x2b\xdd\x12\x72\x6b\x7c\xd5\x64\x5e\x6a\x72\x4c\x73\xa4\x75\x7a\xdc\x68\x67\x8d\x52\x68\x53\x6e\xbc\x76\x6d\xf4\xb4\x2f\x67\x68\x77\x08\x0e\x77\xc9\x5d\xc6\x93\x60\x32\x78\xc4\x25\xe8\xc9\x04\x13\x28\x59\x68\x11\xda\xce\xcf\x1a\x81\xe0\x75\xcd\xff\x5a\x3d\x5e\xc0\x6d\x81\x1a\x84\x91\x3a\x8f\x01\xfa\x2a\xb7\x4c\x20\xad\xb9\xaa\x14\xd3\x08\x46\x83\x3b\x4c\xa8\x64\x4a\xad\x02\xae\xe1\x16\x05\xea\x08\x55\xb0\x79\x80\x09\x35\x24\xa9\x73\x85\x9b\x08\x21\xb3\xfd\x47\x90\x82\x11\x68\xe3\x00\xb5\xf1\x79\x01\x25\x96\xc6\x2e\xa1\x37\xfa\x70\x72\x10\xd1\x9c\x01\xeb\x35\x94\xc6\x22\xb8\x82\xe9\x88\xbb\xf2\x6c\x32\xb8\xf3\x33\x7c\xc5\x2a\x49\x68\xe7\x68\x43\x85\x2a\x66\x99\x52\xa8\xfa\x40\x06\x16\x08\x1a\xeb\x4f\xc5\xc7\x7a\xbf\x00\x06\x33\x99\xe7\xf1\x6c\x0d\x93\xc0\xad\x74\x05\x7c\x1c\x6f\x30\x5d\x23\x49\x85\xf1\x4a\xc0\x0c\x21\x93\xf1\x45\x11\xc9\x66\xc6\x46\xc0\xca\x1a\xe1\x79\x2c\x12\xa1\xf3\x15\xf5\x41\xba\x97\x04\x16\xb9\x29\xcb\xd5\xa7\xea\xe9\x91\x39\xc1\x22\xb8\x8c\x61\x7d\x19\x5f\xf4\xc1\x99\x08\x95\xcb\x39\x42\xa5\x50\xbb\x65\x08\xce\x53\xac\x62\x93\x95\xcc\x58\x40\xc7\x05\x30\x2d\xb6\xe2\x4e\x76\xda\xa7\xeb\x0e\x93\x12\x85\xf4\x65\xb7\xa5\xcb\x27\xa3\xad\xf2\x05\xec\xb5\xa6\xda\xea\x22\x43\x4f\x91\xae\x0d\xf7\x99\x62\x8e\x33\xdb\xe2\xfc\x32\xa8\x98\xc9\xe0\xaa\x42\xcb\x5c\xe8\x95\xe9\x92\x1c\x96\xd0\xe3\xc6\xa2\x21\x30\x16\x1a\xeb\xed\x6e\x36\x94\xf2\x82\x69\x8d\xea\x39\x54\xc8\x05\xeb\x16\x26\xe3\x8b\x73\x68\xf0\x62\x02\x42\xeb\x5f\x4d\xa1\x57\x1b\xf4\x61\x86\x8e\xf5\x81\xa9\xaa\x60\x7d\x40\x91\x63\x0b\x9f\x39\x5a\x92\x46\x3f\x87\x0f\xf7\xd6\xa2\x76\x2d\x84\xbe\xd5\x60\x21\x3b\x0f\x5c\x9a\xc3\x21\x29\xda\x97\x68\x25\x87\xc6\x25\x90\xe7\x05\x30\x82\xd1\xe8\x68\x98\xbc\x7d\x9b\xec\x88\xa3\x90\x74\x97\x92\xfc\xd1\x5a\xb8\x3d\xb2\xf3\x7a\xb0\x4b\x6b\x2a\x7f\xe0\x03\xa7\xb3\x93\x29\xcc\x8d\xf2\x65\x68\x66\xf8\x70\xd2\xe6\x72\x4b\x69\xfe\x36\x21\x79\x35\x6a\x49\xc6\xd7\x60\xbb\xeb\xb5\x9e\x0a\xa1\x77\x05\xb3\xa2\x0f\x79\x35\xea\x83\x34\xc3\xd6\xe0\xa5\xa9\x5a\x47\xc2\x9e\xe0\x5b\x62\x3f\xbf\xba\x9e\xee\x65\x31\x1c\xec\xe4\x7c\x5d\xf1\x15\x4f\x49\xcb\xaa\xc2\xf6\xb9\xa4\x24\xb9\x5e\x9d\x93\x83\x5d\xc7\x93\x15\x10\x84\x47\x26\x35\x5a\xf8\x2c\xb5\xbf\x0f\xbf\x67\x32\x87\x15\xf6\x4e\x1c\xff\xff\x6d\x93\x94\x63\x39\x6d\x48\x7f\xc9\xaa\x35\xa3\xf7\xf1\x15\x40\xf7\x82\x69\x96\xa3\x38\x59\x76\x03\x83\xcf\xe6\xce\x94\xc6\xc9\x79\xfc\x76\x00\xba\x13\x8b\xcc\xad\x5e\xdf\x68\xaa\x90\xcb\x4c\xa2\x08\xef\x7f\xee\x86\x70\x15\x9f\x98\x02\x81\x8e\x49\x45\x41\x05\x1d\x0b\xb3\x21\xec\x29\x60\x91\x8c\xb7\x1c\xa9\x99\xa0\x3c\x86\xe5\x83\x28\x18\xbd\x4e\x9f\xa8\x48\xef\x70\xf9\x0b\x49\x9c\x4e\x3f\x42\xe5\x67\x4a\x72\x08\x00\xf1\x2b\xf7\x84\x16\x5e\x06\xad\x79\xb9\x55\x3b\x46\x84\x2e\x15\xd2\xd6\x8e\xb6\xb0\xae\x99\x2b\x42\x04\x0c\x84\xb4\xc8\x5d\x90\xe4\x45\x81\x16\x21\x47\x1d\xa4\x0c\x05\x44\x04\x5a\x1b\x18\x95\x62\x1c\x45\x90\xb6\x58\x42\x0a\xbb\x83\x45\x17\xe6\xf4\x9e\xaf\x63\x83\x91\x46\xb7\x30\xf6\x2e\x2d\x9d\x6f\xe5\x34\xb9\x3c\x07\xa9\x1d\xda\x8c\x71\x84\x8b\xaf\x37\x09\xdc\x10\xc2\xf1\xdb\xe3\x21\xc8\x30\x3f\x82\xbc\x3e\x0e\x9d\xe0\xb0\x19\x3d\xff\xf5\xe5\xcc\x40\x66\x59\x89\x94\xec\x92\xd9\xb7\x94\xbc\x3e\x1e\x6c\x32\x2c\x0c\xb9\x94\x4b\xd1\x9e\xb3\xc9\xf9\xe9\x17\x38\xbf\x9e\xbf\x06\xcb\x74\x8e\x31\x7d\x44\x32\xd7\xe1\x29\x4c\xa1\xb0\x0e\xd0\xde\x5c\xec\x28\xc5\x70\x90\xc4\xff\xff\x1a\x1e\x6d\xd5\xae\x32\xe2\x57\x68\x7c\xf2\x33\xb4\x1a\x1d\x12\x54\x46\x3c\x8f\xc9\xa8\x9d\x49\x98\xc8\x92\xe3\x5e\x36\xef\xde\x9d\x5d\x9d\x76\x9e\x44\xa9\x81\xa2\xa4\xf3\xb5\x40\x18\x92\x83\xf3\x6b\x58\x48\xa5\x42\x6b\x59\x8c\xb3\x5f\xc4\xa6\x0e\xeb\x40\xba\x5a\x07\xfa\x51\xae\x86\x03\x57\xec\x35\x08\xfd\x2f\x34\x25\x9d\x40\xa6\xb3\x16\x76\x4b\xc8\x75\xb8\x87\xed\xe1\x3e\xdc\x6d\x84\x29\x99\xd4\x29\xf9\x2c\x93\xf7\xad\x55\xf8\x9f\x47\x2b\xb1\xfe\x08\xeb\xd3\x4d\x2f\xc6\x9d\x3a\xda\xad\xb8\x32\x4d\x0b\xb4\x28\x60\xb6\x5c\x51\x85\xd3\x86\x8f\xa4\x87\x2b\x51\xa2\x0c\x67\xaa\x51\xe3\xcc\x98\xa4\xa1\x9c\xd0\x9c\x27\x1b\x67\x0e\xe0\xe9\xb5\xdd\x30\xdc\xbe\x70\xe8\xf0\x33\xb5\xf1\xba\x21\x75\xfe\x97\x17\x8e\xcd\xa5\x2b\x5a\x86\x9d\x2e\xc7\x30\xce\x99\x66\x6a\xe9\x24\x0f\x8b\x62\x03\x16\xd7\xc4\x8a\x9c\x45\x56\x12\xf4\x26\x4c\x49\x6e\x0e\x76\xf5\xbd\xbe\xbc\xb4\xf1\x62\x79\x6e\x31\x8f\x0a\xda\x5a\x83\x86\x44\xc8\xf8\x5a\x9f\x8d\x1f\xad\xe0\x33\x5b\xa2\x85\x5e\xe3\xb0\xd6\x6c\xeb\xb1\x45\xb0\x5a\xef\x55\xe1\x6c\x2d\xe7\x13\xb4\x4e\x66\x92\x33\xb7\x75\x27\x42\xeb\x28\x9d\x33\x25\x85\x74\xcb\xb4\x42\x2b\x8d\x48\x0b\xe3\x2d\xb5\x52\xfe\xd6\x9c\x0c\x53\x38\x6c\xe3\x81\x3b\x5f\xc3\x0e\x7b\x48\x6d\xfd\x54\x15\x3b\x7e\x73\x14\x54\xec\xcf\x00\x00\x00\xff\xff\x49\x50\x24\x77\xa0\x0f\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers": &vfsgen۰DirInfo{ name: "workers", @@ -3409,9 +3409,9 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/ingress.tf": &vfsgen۰CompressedFileInfo{ name: "ingress.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 1082, + uncompressedSize: 1517, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x92\x3f\x6f\xa3\x40\x10\xc5\xfb\xfd\x14\x4f\xf8\x5a\xdf\xe1\xb3\x4f\xba\xe6\x9a\x4b\x93\x48\x51\xe4\x82\x1e\x2d\x30\xf6\x22\x93\x5d\x32\xb3\x18\x39\x96\xbf\x7b\xb4\x0b\x38\xa1\xb4\x94\x74\xa1\xe3\xbd\x99\xdf\xfc\xd9\x59\x20\xd3\xbc\x27\x8f\x3d\xbb\xae\x15\xb8\x1d\x6a\x2b\x5e\xdb\x92\x04\x3b\xc7\xe8\x84\xd0\xd7\xde\xa0\x71\xba\x42\xa1\x9b\x60\xb1\x28\xc5\x24\xae\xe3\x92\x90\xe8\x5e\xf2\xa6\xc8\x7d\x04\xe5\x11\x94\x20\xe9\x1d\x1f\x88\x65\x69\xbc\x6f\x13\x9c\x15\x60\xf5\x33\x61\xfc\xfe\x21\xf9\x71\x3e\x6a\xfe\x19\xc4\xcb\x72\x16\xac\x80\x63\x5b\xe6\x75\x35\x85\x86\xb8\x41\x51\xc0\x58\xc6\x9f\x5a\x0a\x94\xa9\xdb\x44\x29\xa0\x65\xe7\x5d\xe9\x9a\x60\x64\x77\xdb\x40\x6a\x1d\xfb\x11\xf3\x37\x0d\x31\x0b\xdc\x67\xd9\x16\x86\x74\xe3\x0d\x4a\x43\xe5\x21\x0e\x5a\xdb\x3d\x93\x88\xc2\x68\xe5\x83\x15\x1a\x9f\x83\x43\x7a\x32\xa8\xef\xec\x55\xfa\xfb\xcf\x66\x10\xb5\x37\xd3\x88\xbf\x06\xd4\x6b\x6c\x2e\x94\x7e\x7a\xfc\x2f\x60\x7a\xe9\x6a\xa6\x0a\xde\xc5\xf5\x4a\xd8\xcb\x10\x79\x82\xb6\x15\x3a\x3b\xfd\x79\xc3\x24\xc6\x35\x95\x44\xc0\x28\xe7\x57\x39\x96\x59\x47\xef\x9a\xf4\xc1\x0d\xde\x58\xf9\xc1\x7a\xe2\xa3\x6e\x50\x90\xef\x89\xec\x6c\x01\xf3\x9e\x0a\xc2\x2a\x85\x63\xac\xd3\x98\x5c\x4f\xa9\x61\x4c\x05\x5c\xd4\xe5\xb6\xe7\x97\x9b\xde\x5f\xbe\xec\x00\x36\x9b\xf5\xf7\x05\x7c\xd6\x05\xbc\x05\x00\x00\xff\xff\xf1\x9f\xe1\x35\x3a\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x91\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x0f\xf5\xdc\xc5\x61\x73\xe8\xc5\x97\xe6\x54\x28\x21\x87\xde\x85\x6c\x4f\xd6\x26\x8a\xc6\x9d\x91\x77\x09\x25\xff\xbd\x48\xd6\x1a\xa7\x2c\xa1\x2d\x6c\x4f\xd5\x4d\xf3\xf4\x34\x33\xdf\x13\x52\x9e\xa5\x23\x18\x77\x52\xeb\x5b\xeb\x47\x8d\x14\x48\x0c\xcc\x18\x0e\x42\xaa\x1f\x87\x18\x27\x83\x1f\x15\xe0\xd9\xf5\xb6\x75\xde\x85\x8e\xc4\x3a\x09\x68\x70\x74\xb2\xf3\x6d\xba\x54\xc0\x24\x1c\xb9\x63\x8f\xf5\x34\x30\xdf\xee\x1e\x4c\xd2\x58\x22\xde\x9c\xd5\x9c\x3a\xd8\xa4\x57\x15\xd0\xd3\xa3\x9b\x7d\xb4\xae\x8b\x23\x87\xdc\x17\x88\x2f\x13\xfd\xe2\x35\x8f\x2c\x27\x27\xbd\x59\x1e\x38\x39\x50\xb4\x07\xe1\x79\x2a\x93\x95\x8d\xb6\xca\xee\xc4\xf2\x44\xb2\xec\xb4\x5b\x66\x7e\xad\x5e\xab\xea\x77\x39\xe8\xf5\x41\xe8\xbf\x27\xa1\xef\xa2\xd8\xda\x0c\xcc\xd6\xb8\xd0\x38\x4e\x9d\x1d\xfb\xed\x2a\x4b\xa5\x5a\x87\xc9\x43\x37\x09\xa5\xc6\xc4\xcc\x54\x5b\x46\x17\xd0\x34\xd8\xd7\xf5\xa7\x3a\x3d\x1b\xc8\xf9\x38\xd8\x6e\xa0\xee\xa9\x30\xb8\xe0\xbc\xec\x05\x3e\xe0\xfe\xeb\x67\x85\xd0\xf7\x79\x14\xea\x11\x19\xb3\x12\xd4\x3d\x53\xf9\xf9\x05\x2e\xf4\x98\xc3\xf9\x16\x07\x21\x1d\xd8\xf7\x9a\x3f\x28\x65\xbb\x96\x97\x0e\x59\x5b\x4d\x1b\x35\x69\xa5\xf3\x97\x10\x49\x8e\xce\xa3\xa5\x78\x22\x0a\xe5\x2f\xe4\x55\xde\xce\xd4\x12\x6e\x6a\xb0\x60\x5f\x67\xf3\x78\xb6\x36\xb8\xa9\x73\x32\x19\xe6\x41\xd1\x14\x06\x77\x7e\xd6\x48\x72\x9f\x16\x59\xa0\x77\x4b\xc5\x06\xf7\x4c\xf9\xc9\x03\xb3\xcf\xfa\x9a\xcb\xc4\xec\xcf\xfa\x1f\x87\xad\x57\x4d\xfb\xf6\x76\xff\xd7\x69\x17\xef\xff\xb4\xdf\x4f\xfb\x67\x00\x00\x00\xff\xff\x8b\xbf\x6e\x13\xed\x05\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/outputs.tf": &vfsgen۰CompressedFileInfo{ name: "outputs.tf", @@ -3423,23 +3423,16 @@ var vfsgenAssets = func() http.FileSystem { "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/variables.tf": &vfsgen۰CompressedFileInfo{ name: "variables.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 3055, + uncompressedSize: 3587, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\x38\xa8\x0f\x4d\x01\x47\xb1\xd3\xa2\x40\x8b\xe6\x21\x4d\x8a\x2d\x58\x9b\x74\x75\xbb\x3d\x0c\x83\x4a\x53\x27\xe9\x10\x89\x64\x79\x47\xbb\xee\xd0\xff\x3e\x50\x92\x63\xc7\x56\xd0\xa4\x9b\x9f\x0c\x91\xf7\x7d\xdf\x7d\x3c\xde\x71\xa1\x3c\xa9\x79\x8d\x90\x18\xd5\x60\x02\xff\x8c\x00\x64\xe5\x10\xfa\xdf\x09\xb0\x78\x32\xe5\x08\x20\x47\xd6\x9e\x9c\x90\x35\x70\x02\xc9\x27\x43\x5f\x02\x42\x0c\x83\xc2\x7a\x90\x0a\x61\x69\xfd\x35\x7a\x70\xd6\xd6\xc9\xe8\xfb\x68\xf4\x08\x4e\xff\x9c\x8d\x46\x1b\x92\x85\xd3\x19\xe5\x0f\xa1\x79\x17\x58\x60\x8e\xc0\x28\x20\x16\x3e\x77\x08\x9f\xc1\x06\x71\x41\x60\xbe\x02\x5d\x07\x16\xf4\x2d\xe1\x86\x89\xc3\xdc\xa0\x64\x94\xf3\x10\x5b\x4d\x2c\x07\x1d\xe5\x93\x1f\x73\x6e\xb0\xee\xc1\x8b\x3a\x78\x92\x55\x56\x7a\x1b\xdc\xff\x40\xde\x79\x9a\xed\xe0\xde\x25\xe4\x11\x90\x61\x51\x46\x23\x6f\xab\xea\x41\xb4\x0d\x46\x86\x24\x99\xd0\xcc\xd1\xb7\x62\x0a\x15\x6a\xe9\x3f\x4f\xf7\xe5\x5d\xb6\x3b\xc1\x16\x1b\xa2\x1d\x07\xd6\xdf\xb3\x48\xf1\x83\xa3\xde\x26\x4b\xe4\x69\xca\x8d\xaa\xeb\x64\x9f\xf5\xcd\xd9\xf1\x0d\x5f\x8b\xb6\xc3\x69\x39\xbb\x47\xfd\xde\x62\x2b\x6a\x25\x5a\xf9\x01\xb2\xcb\x58\xd2\xb6\x80\x2b\x87\x5e\x09\x99\x12\x66\x2b\x16\x6c\xe0\x40\x5b\x8f\x96\xc1\x7a\xe8\xa3\x9f\xec\xeb\xd0\x95\x32\x06\xeb\x87\x48\x61\x89\xd1\x03\x4a\x4e\xdf\x5d\x40\x8f\x77\x73\xc7\xae\x66\x70\xd0\x05\x8c\x61\x8e\xa2\xc6\xa0\x6a\x57\xa9\x31\x60\x5e\xe2\x80\x9e\x05\x7a\x26\x6b\x1e\xa2\x47\x07\xef\xd1\xc8\x80\xa0\x3f\x3a\xb0\xe8\xce\x5a\x4b\xbf\x39\x9a\x62\x42\x83\x9e\x34\xf4\x94\xc0\x41\x57\xa0\x18\x8e\x8f\x9f\x4f\xd3\x17\x2f\xd2\xc9\xae\xbc\x9c\xf8\x3a\x63\xfa\x36\x78\x70\x77\xd4\xe4\xb3\xc9\xbe\xac\x19\x7d\xc3\xb5\xa6\x37\xaf\x67\xb0\xb0\x75\x68\x10\xc8\xc0\x2f\xaf\x87\x28\x1f\x5a\x99\xa5\x3b\x1e\x30\xe3\x63\x8c\xdd\x67\x3d\xc0\xb4\x4c\x21\xd6\x6a\xae\x7c\x3e\x86\xd2\x1d\x8f\x81\xec\x74\x30\x79\xb2\xc3\x3d\xe2\x8e\xe4\x07\x72\xbf\xb8\x7a\x3f\x1b\x52\xe1\xf1\x4b\x20\x8f\x79\x5b\x38\x03\xf4\xec\xac\x64\xce\x93\x7e\x90\x13\x03\x36\xcc\x9c\x15\x68\x81\xa2\xe1\x9f\x66\xe7\x2d\xa3\x0a\x62\x59\xab\x3a\x5e\x9f\xb6\x65\x41\x24\xdc\x34\x8d\x14\xde\xa2\x5a\x60\x2c\x8f\x35\x05\x36\x4e\x56\x3d\xf3\x1d\x18\x62\x21\x30\x82\x35\x87\x39\x36\xca\xe4\xdb\x78\x97\x56\x70\x0c\xbc\x24\xd1\x55\x8c\x20\x73\xe8\x6a\xa5\x11\x0a\x6f\x9b\x8e\x5d\xec\x76\x28\x83\x89\xca\x2d\x33\xcd\x6b\x7c\x09\x95\x88\xe3\x97\x47\x47\x25\x49\x15\xe6\xa9\xb6\xcd\x91\xa0\xf7\xaa\xb0\xbe\x39\x74\xde\x2e\x28\x47\xcf\x03\xdf\x0e\xd5\x92\x8f\x88\x39\x20\x1f\x3d\x7b\x7a\x3c\xd9\x71\x5a\x94\x2f\x51\x7e\x7a\x20\x9c\xe6\x39\xc5\xff\xaa\x86\x0e\xa9\xf7\xe2\xf4\xc3\x25\xc7\x8c\x96\x15\xe9\x6a\x63\x04\x70\x65\x43\x9d\xc7\x11\xa2\xf2\x1c\xf3\x64\xef\x10\xff\xfa\xfb\xb6\x3e\x5d\xeb\x8c\x0d\x39\x87\xf2\x13\xf2\xce\xac\x11\x45\x06\x3d\xbc\x25\x13\xbe\xc2\x99\x35\x05\x95\x70\x03\xf8\x43\x7a\x51\xe5\x36\xed\x09\x34\xca\x6d\x05\x9d\xb4\x4b\x00\xc9\x3b\x65\x54\x89\xf9\xeb\x55\x12\x69\xdf\xda\x6b\xdb\x58\xa1\x45\xdb\x37\x01\x92\x33\x8f\x4a\x6e\x96\x3f\x19\x76\xa8\xa9\xa0\xce\x80\xef\xfb\xba\xaf\x5c\x6f\x6a\x8e\xa2\xa8\x6e\xad\x14\x55\x82\x35\xf1\xd1\x02\x1e\xd9\x06\xbf\x9e\x6e\x8f\x40\xb7\x69\x85\x38\x10\xac\xd9\x96\x7f\x1d\xe6\xd8\x2d\xfe\x97\x67\xcd\x06\xe5\x1e\x4f\x0c\xae\xb2\x6b\x5c\xfd\xc4\x59\xcd\x66\xbf\x82\x0b\xf3\x9a\x34\x44\x80\xf6\x92\x05\x46\x0f\x8f\xe3\x64\x7b\xbc\xf7\x94\xf1\x0b\xd2\x98\x69\xca\x7d\xc7\x75\x1b\xee\xd5\xab\x37\x57\xe7\xa3\xb3\x8b\xf3\x0f\x70\xf1\x7e\xf1\x0c\xbc\x32\x25\xc6\x6c\x14\x33\x95\x06\x7e\x0b\x73\xf4\x06\x25\xd6\x64\x07\xc5\xe9\xe8\x63\x85\x30\x65\x81\x8b\xf7\xb0\xa4\xba\x8e\x1e\x78\x8c\xcb\x7d\xa7\x8a\x46\x64\xca\x51\xfb\xc9\x8f\xdb\xb6\x36\x9d\x48\x75\x67\x40\x54\x9e\x1b\x4e\x47\x51\xcc\x68\xcb\x90\x81\x26\x76\x02\xc9\x74\x92\x3e\x4d\x27\xe9\xe4\x68\xfa\x3c\xd9\xbd\x06\xad\xd9\x59\x6e\x1b\x45\x26\xe3\x50\x14\xf4\x75\x28\xef\xe4\xf7\x80\x9e\xb0\xb3\xaf\xdb\xcd\xb0\x24\xa9\x5a\xb1\x5d\xdc\x8d\x56\x65\x78\x89\xb1\x0d\xc7\xe3\xec\xa5\xc2\x79\xaf\x87\x78\x7d\xc4\x69\x6d\xb5\xaa\xfb\xd9\x51\x58\x9b\xf6\x92\x53\x5e\xe8\xf4\xd6\x9e\x27\x90\xdc\x7f\x90\x6f\x07\xc6\x74\xff\x0d\x00\x00\xff\xff\xde\x12\x6f\x75\xef\x0b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x97\xd1\x4f\x1b\xb9\x13\xc7\xdf\xf3\x57\x8c\xb6\x0f\xa5\x52\x58\x12\x40\xd5\xaf\x55\x79\xa0\x50\xfd\x8a\xae\x05\xae\xa1\x77\x0f\xa7\xd3\xd6\xb1\x27\xbb\x16\x5e\xdb\xf5\x8c\x93\xa6\xa7\xfe\xef\x27\xef\x6e\x20\x24\x8b\x0a\x5c\x79\x42\xf6\xce\x7c\xbe\xf3\xb5\x3d\x76\xe6\x22\x68\x31\x35\x08\x99\x34\x91\x18\x43\x61\x45\x8d\x19\xfc\x33\x00\xe0\xa5\x47\xe8\xfe\x8e\x80\x38\x68\x5b\x0e\x00\x14\x92\x0c\xda\xb3\x76\x16\x8e\x20\x3b\x69\xe3\x20\xc5\xc1\x8e\x0f\xe8\xd1\x2a\x54\xc0\x0e\xbc\x73\xa6\x19\x7f\x91\x0d\x7e\x0c\x06\xb7\xac\x34\xf1\x68\xd0\x67\xab\xbf\x46\x6c\x39\x33\x17\x80\x2b\x84\x85\x0b\xd7\x18\x1a\x50\x83\x78\x06\xc7\x7f\x4e\xd6\x49\x73\x2f\x0b\xad\x1e\x83\xf9\x18\x89\x61\x8a\x40\xc8\xa9\x86\x2f\x6d\x86\x2f\xe0\x22\xfb\xc8\x30\x5d\x42\xe7\xd4\x46\x4d\x14\xa7\x16\xb9\xd0\x8a\xfa\x68\x46\x13\xef\xb4\xc8\x17\x3f\x67\xde\xe6\x7a\x00\x17\x65\x0c\x9a\x97\x45\x19\x5c\xf4\xbf\x00\xde\x7a\x5a\x6c\xe4\xbd\x4f\xc8\x33\xd0\x96\x58\x58\x89\xb4\xae\xaa\x4b\x22\x5d\xb4\xdc\x27\xc9\xc6\x7a\x8a\xa1\x11\x33\x13\xd1\x70\x37\x3c\xde\x96\x77\xde\x7c\x09\x6e\x76\x0b\xda\x70\x60\x35\x5e\x24\xc4\x4f\x96\x7a\x1d\x96\xf1\x41\x4e\xb5\x30\x26\xdb\xa6\xbe\x3b\xd9\xbf\xe1\x35\xd9\x36\x98\x8e\x1e\xb2\x7f\xef\xd0\x66\x46\xb0\x14\xa1\x07\x76\x9e\xb6\xb4\x9b\xc1\x85\xc7\x20\x58\xdb\x12\x26\x4b\x62\xac\x61\x47\xba\x80\x8e\xc0\x05\xe8\xa2\x37\x4f\x92\xa3\x42\x56\xc2\x5a\x34\x8f\x91\x42\x9c\xa2\x7b\x94\x1c\x7f\x3c\x83\x2e\xdf\xcd\x19\xbb\x98\xc0\x4e\x1b\x30\x84\x29\xb2\x18\x82\x30\xbe\x12\x43\x40\x55\x6e\x9d\x6c\x47\xc5\x1c\x03\x69\x67\x1f\xa3\x47\xc6\x10\xd0\x72\x8f\xa0\x3f\xda\x64\xc9\x9d\x95\x96\xee\xe3\x64\x8a\x8d\x35\x06\x2d\xa1\x43\x02\x45\x59\x81\x20\xd8\xdf\x7f\x39\xce\x5f\xbd\xca\x47\x9b\xf2\x94\xa6\xeb\x82\xf4\xf7\xde\x85\xbb\x67\x4f\x1e\x8e\xb6\x65\x4d\xf4\x77\x5c\x69\x7a\xf7\x76\x02\x73\x67\x62\x8d\xa0\x2d\xfc\xff\x6d\x1f\xf2\xb1\x3b\xb3\xf4\xfb\x3d\x66\x5c\xa5\xd8\x6d\xea\x0e\xe6\x65\x0e\x69\xaf\x2a\x11\xd4\x10\x4a\xbf\x3f\x04\xed\xc6\xbd\xc5\x6b\xd7\xdf\x23\xee\x29\xbe\xa7\xf6\xb3\x8b\xcb\x49\x9f\x8a\x80\x5f\xa3\x0e\xa8\x9a\x8d\xd3\x83\x27\xef\xb8\xf0\x41\xcb\x47\x39\xd1\x63\xc3\xc4\x3b\x86\x26\x51\x32\xfc\xf3\xe4\xb4\x21\x8a\xc8\x8e\xa4\x30\xe9\xf8\x34\x2d\x0b\x12\xf0\xb6\x69\xe4\xf0\x01\xc5\x1c\xd3\xf6\x58\x21\xb0\xf6\xbc\xec\xc8\xf7\xe4\x60\x07\x91\x10\x9c\xdd\x55\x58\x0b\xab\xd6\xf3\x9d\x3b\xc6\x21\xd0\x42\xb3\xac\x52\x84\xb6\xbb\xde\x08\x89\x30\x0b\xae\x6e\xe9\xec\xd6\x43\x09\x6c\x52\xee\x88\xf4\xd4\xe0\x6b\xa8\x98\x3d\xbd\xde\xdb\x2b\x35\x57\x71\x9a\x4b\x57\xef\x31\x86\x20\x66\x2e\xd4\xbb\x3e\xb8\xb9\x56\x18\xa8\x67\x6c\x57\x2c\x68\x4f\x13\x45\xa4\xbd\xc3\x83\xfd\xd1\x86\xd3\x2c\x42\x89\xfc\xe4\x0b\xe1\x58\x29\x9d\xfe\x17\x06\xda\x4c\x9d\x17\xc7\x9f\xce\x29\x55\xb4\xa8\xb4\xac\x6e\x8d\x00\xaa\x5c\x34\x2a\x5d\x21\x42\x29\x54\xd9\xd6\x22\xfe\xf5\xf7\x5d\x7d\xd2\xc8\x82\xac\xf6\x1e\xf9\x09\xf2\x4e\x9c\x65\xa1\x2d\x06\xf8\xa0\x6d\xfc\x06\x27\xce\xce\x74\x09\x37\x09\x7f\x8a\x67\x51\xae\x63\x8f\xa0\x16\x7e\x2d\xe8\xa8\x99\x02\xc8\x3e\x0a\x2b\x4a\x54\x6f\x97\x59\xc2\x7e\x70\xd7\xae\x76\xac\xe7\x4d\xdf\x04\xc8\x4e\x02\x0a\xbe\x99\xfe\x6c\xc9\xa3\xd4\x33\xdd\x1a\xf0\x63\x5b\xf7\x85\xef\x4c\x55\xc8\x42\x9b\xc6\x4a\x16\x25\x38\x9b\x1e\x2d\x10\x90\x5c\x0c\xab\xdb\xed\x19\xc8\xa6\xac\x98\x2e\x04\x67\xd7\xe5\x5f\xc7\x29\xb6\x93\xff\xe5\x59\x73\x9b\xe5\x01\x4f\x0c\xaa\x8a\x6b\x5c\x3e\x61\xad\x26\x93\xf7\xe0\xe3\xd4\x68\x09\x29\x41\x73\xc8\x22\x61\x80\xe7\xe9\x66\x7b\xbe\xf5\x94\x09\x73\x2d\xb1\x90\x5a\x85\x96\x75\x37\xdd\x9b\x37\xef\x2e\x4e\x07\x27\x67\xa7\x9f\xe0\xec\x72\x7e\x08\x41\xd8\x12\x53\x35\x82\x48\x97\x16\x7e\x8b\x53\x0c\x16\x39\xed\xc9\x36\x15\xe5\x83\xab\x0a\x61\x4c\x0c\x67\x97\xb0\xd0\xc6\x24\x0f\x02\xa6\xe9\xae\x53\x25\x23\x0a\xe1\x75\x33\x14\x86\x4d\x5b\x1b\x8f\xb8\xba\x37\x20\x29\x57\x96\xf2\x41\x12\x33\x58\x33\xa4\xa7\x89\x1d\x41\x36\x1e\xe5\x07\xf9\x28\x1f\xed\x8d\x5f\x66\x9b\xc7\xa0\x7d\x71\x2b\x57\x0b\x6d\x0b\x8a\xb3\x99\xfe\xd6\x57\x77\xf6\x7b\xc4\xa0\xb1\xb5\xaf\xfd\x9a\x60\xa1\xb9\x6a\xc4\xb6\x71\x37\x5a\x85\xa5\x05\xa6\x36\x9c\x96\xb3\x93\x0a\xa7\x9d\x1e\x4d\xab\x25\xce\x8d\x93\xc2\x74\x77\xc7\xcc\xb9\xbc\x93\x9c\xd3\x5c\xe6\x77\xbe\x79\x01\xd9\xc3\x2f\xf2\xf5\xc0\x8d\x72\xcd\xb4\x10\xc1\xf6\xd6\x77\xfc\xe9\x7c\x75\xa3\x18\x27\x14\x4c\x85\x49\xad\x25\xa4\xb3\xd1\x76\x1b\x76\x20\x9b\xf3\xd6\x6c\x38\xb4\x18\xa8\x7b\xa0\x68\xda\xfa\x15\x70\x87\x99\x9a\x6c\xe1\x5d\xe0\x5e\xf2\xa5\x0b\xdc\xc3\xed\x5a\x5a\xcb\x4a\x2a\x12\xeb\xfd\xd5\xd5\x65\x3a\x96\x16\x65\x0a\xa7\x6d\x5b\xee\xb9\x44\xff\x37\xea\x55\x45\xbf\x4e\xd6\xe4\x49\xba\x0e\x0f\x0f\x06\x3f\x06\xff\x06\x00\x00\xff\xff\xe7\x00\xf3\x87\x03\x0e\x00\x00"), }, "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers/workers.tf": &vfsgen۰CompressedFileInfo{ name: "workers.tf", modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 2665, + uncompressedSize: 2778, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdf\x8b\x1b\x37\x10\x7e\xdf\xbf\x62\x70\x02\xbd\xa3\x77\xbe\x4b\xfb\x16\x30\x25\xb4\x10\x02\xa5\x79\xc8\x43\x0a\xe1\x10\x63\x69\x76\x57\xb5\x56\x5a\xa4\x91\x1d\x27\xdc\xff\x5e\x46\xda\x5d\xdb\xb9\x2b\x4d\x1f\xba\x0f\xc9\xad\x66\x46\xf3\xe3\xfb\xe6\x5b\xbf\x80\x8f\x21\xee\x28\x26\x78\x93\x39\x7c\xd0\xe8\xac\xef\xe0\x6d\x0c\x79\x6c\x22\xa5\x90\xa3\x26\x58\xe1\x21\x29\xcc\x1c\x52\xb5\xab\x4e\xec\x2b\x58\x1d\x6a\xec\x0a\xbe\x36\x00\x1e\x07\x82\x0d\xac\x5e\x7e\xdd\x63\x5c\xcb\xdb\xe3\x6d\x75\x58\x35\x0d\xc0\x0b\xd0\x21\x7b\x6e\x00\x0c\x25\x1b\xc9\x28\x8d\x23\x6a\xcb\x47\x58\x9e\x0d\x48\x68\x0d\x52\xb3\xfb\x60\xbd\x4a\xf6\x0b\xc1\x93\xe7\x79\x77\xfc\xfc\xdd\xee\xf0\x23\xfc\x54\x0a\x6a\x31\x3b\x56\x3a\x04\x67\xc2\xc1\x9f\x87\xfc\x7c\xdf\x00\xf4\x84\x8e\x7b\xa5\x7b\xd2\x3b\xd5\x45\xd4\xa4\x46\x8a\x36\x98\xea\x50\xba\xf3\xc4\x72\x75\x03\xb0\x1f\xb5\xfa\x12\x3c\x29\x6b\xc8\xb3\x6d\x2d\xc5\x29\x77\xca\x5b\x4f\xac\xac\x49\x35\x86\x69\x18\x1d\x32\x35\x00\x0e\xb3\xd7\xbd\xd2\xc1\xb7\xb6\xcb\x11\xd9\x06\x0f\x1b\x90\xc9\x3f\x67\x9a\xda\x28\x63\x9e\xee\xc2\xd8\x11\x43\x81\x26\x01\x07\x38\xf4\x56\xf7\x60\x7d\x62\xf4\x9a\x12\xa4\x3e\x64\x67\x60\x4b\x80\xc6\x90\x69\x60\x0a\xa9\x68\x2a\x8c\x3e\xc1\x06\x5a\x87\xcc\xe4\xaf\x3e\x35\xd2\x7f\x49\xbf\x55\xe7\x8e\x53\xe6\x74\xdb\x33\x8f\x6b\x6b\x6e\xbe\xcb\x31\x2d\x9e\x32\x87\x73\xb7\x24\xc7\x0f\xd7\xd2\x84\xb3\x2d\xe9\xa3\x76\x54\xf8\x24\x4d\x85\x3d\xc5\x68\x0d\x01\xf7\x34\xc3\x24\xfc\xe1\x18\x8e\x80\xde\x40\xa4\xd1\xa1\x26\xc8\xa3\x41\x26\xd8\x52\x8f\x7b\x1b\x62\x09\xd7\x91\x90\x49\x6d\xa9\x0d\x91\xd4\x1c\xb5\x01\x8e\x59\x26\xfe\x58\xe7\xf6\x11\x2d\x0b\xe7\xdb\x10\x97\x61\xd5\x50\x41\xc0\x90\xc3\x63\x92\x89\x89\x8f\x54\xf1\xe6\xc3\x5b\x99\x6e\x62\x64\x5a\xc3\xbb\xf6\x34\xe1\x4a\x72\xf4\x3f\xb0\x0c\xb9\x66\x37\x70\x45\xeb\x6e\x0d\x69\x0c\x0c\x63\xb4\x9a\x80\x43\x00\x17\x0e\xd7\x37\xcb\x75\x07\xeb\x9c\x84\x84\x38\xf6\xe8\xc9\xac\xcb\x4d\xef\xa7\x37\x71\x49\x40\x49\xe3\x48\xa0\x1d\xa1\xcf\xe3\xcd\x29\x4f\xed\xdc\xdc\x94\x71\xec\x88\x46\xd8\xda\x5a\xad\x6d\x6b\x5a\x5b\x2b\xcb\x89\xcc\x1a\x7e\xb3\x09\xb7\x8e\xe0\x80\x96\xa5\x0f\xdc\x07\x6b\xc0\xa6\x94\x29\x95\x2b\xd0\xd9\xce\xc3\xc1\x72\x0f\x81\x7b\x8a\xa0\x5d\xc8\x26\x49\x4d\x12\xa3\xda\x10\x97\xcd\x55\x6c\x07\x0a\x99\x65\xed\xef\xcb\x96\x33\x76\x4f\x59\x54\xff\x85\x09\x55\x79\x76\x74\x7c\x66\x3d\x57\x7f\xe0\x40\xab\xc5\x69\x8f\x2e\x7f\xbb\xc6\xff\xa0\x2f\xb3\x79\x8c\x61\xc4\x4e\x50\x47\x9e\xf6\xe6\x04\xb8\x3c\x8f\x95\x84\x0f\x37\x17\x85\x09\xf6\x8c\x1d\x58\x2f\x95\xa5\xab\xca\xd1\x2e\x5d\xc3\xeb\xef\x2c\x5d\xa2\x37\x73\x07\xf0\x0b\xac\xfe\xbc\xad\x7f\xbe\x16\xd3\xbf\xb4\x34\xa7\xfb\xc4\xd8\x3d\xfc\x87\x5e\x4e\xad\x3c\x5c\x37\x8f\x4d\x33\x8b\xf9\x49\x57\x2e\x25\xfc\x39\x21\x59\x54\xbc\x8a\xb8\x1d\xb0\x13\xe1\x3a\x2f\xcf\x05\x8d\x6e\x8d\x83\x55\x56\x54\x63\xe6\xbb\xe2\xe3\x48\x67\x1d\x5c\x9c\x37\x50\xb8\xa7\x2a\xe5\x2f\x3a\x3d\x9d\x37\x00\xe4\x85\x8d\x6a\x08\xde\x72\x88\xc2\xda\x0d\xb4\xe8\x52\x11\xb5\x9c\x28\x2a\x83\x8c\xb0\x01\xf9\x6f\xad\x79\x2a\x7e\xd2\x96\x5b\xdb\x79\x5b\xe4\x30\x92\x37\x14\xc9\xd4\x9d\x4e\x1c\x22\x76\x72\x7f\x0c\x81\xd5\xd6\x05\xbd\x53\x86\xf6\x52\x4b\x45\x72\x1f\x5c\x1e\xa6\x16\x6a\x59\xc6\xa6\xdd\x5c\xfa\x62\x2f\x1f\x92\x33\xbb\xbc\x17\xbb\x0d\x63\xba\x6c\xab\xd8\xe5\xb8\xd8\xc9\xeb\x78\x1c\x65\xff\xe1\x89\xe2\x9c\xbe\x14\x89\x74\x8e\xb2\x47\x93\x6a\x4f\x03\xba\x3c\x7d\x4e\x19\xef\xee\xe0\xfd\xff\x28\x8d\x00\xb6\xf3\x62\xd1\x3d\xfa\x8e\xce\x3a\xfd\x34\x13\xe4\xa1\xf4\x73\x4e\xba\x77\x13\x16\x50\x21\x6a\x0a\x70\xab\x05\xb2\x85\x68\x0b\x68\x95\x71\x3a\x78\x26\xcf\x73\x82\x82\xf3\xcc\x5f\xd5\x5a\x47\x33\xd6\x13\xf2\x0b\xd2\xb2\x21\xc4\x7c\x14\x2e\x79\x5e\x78\x03\x90\xbc\x1d\x47\xe2\x74\x06\x8e\x76\x5a\xcd\xc7\x17\x45\xff\x1a\x3c\xa3\xf5\x14\xe1\x77\xeb\xf3\xe7\xcb\xda\x2f\xca\x38\xd5\x3f\xf7\x23\xd5\xcf\x2e\x92\xde\x3a\xba\x5a\xbd\xfc\x3a\x22\xf7\xeb\x21\x98\xec\xe8\xf1\x4e\xbb\xbb\xe9\x4b\x7d\xc4\xc1\xad\x79\x18\xdd\xaa\x7c\xeb\xf6\x18\x05\xef\x0a\xe7\x2e\x6f\xa9\xde\xfa\x8d\x32\x58\x2f\x3f\x21\xae\x5e\xdd\xdf\x94\x36\x4e\x7e\xd7\x25\x2e\xa5\x5e\x89\x60\x3d\x51\x94\xbf\x52\xf0\xe4\x75\x30\x54\xb4\x6c\xf6\xab\x51\xda\xe5\xc4\xb2\x59\x3e\xa9\x44\x51\xb6\x42\xd9\x11\x36\xa0\xad\x89\x7d\x48\x5c\x63\x26\x8b\x1c\xde\xc0\xab\xfb\x6f\x62\xc3\x80\xf2\xbb\x2c\xb7\xad\xfd\x7c\x9a\xf2\x33\xc6\x89\x27\x7f\x07\x00\x00\xff\xff\x32\xfd\xbc\xf0\x69\x0a\x00\x00"), - }, - "/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers.tf": &vfsgen۰CompressedFileInfo{ - name: "workers.tf", - modTime: time.Date(1970, 1, 1, 0, 0, 1, 0, time.UTC), - uncompressedSize: 798, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x41\xae\xdb\x20\x10\x86\xf7\x9c\xe2\x57\xba\xab\x54\x7a\x82\x2c\x7a\x86\x2e\xba\xa8\x2a\x44\x60\xe2\x37\xb2\x03\x88\x01\xbf\xa6\x55\xef\x5e\x61\xec\xd4\x76\xb3\x8a\xbf\xff\x83\x19\x60\x1e\xd1\xd7\x89\x70\x79\x8f\x79\xa4\x2c\x17\xfc\x56\x80\xc4\x9a\x1d\xe1\x8a\x8b\xfe\xbc\x05\x0a\x08\xf6\x41\x00\xae\x98\x6d\xd6\x6e\xaa\x52\x28\x9b\x06\x95\x02\x3e\xe0\xcb\xb7\xaf\x0a\x98\x93\x33\xec\xf1\xfa\x5d\x61\xdf\xc5\xcc\xc9\xe9\x40\xa5\x6d\xa6\xd9\xb7\x12\xf5\x16\xa8\x18\xf6\xb2\xd7\x3a\xd5\xa9\xde\x26\x76\xfa\xe3\xaa\x92\xab\x99\xcb\xd3\x0c\x39\xd6\x24\xb8\xe2\xfb\xe2\x1e\xb0\xee\x7d\x6a\xf6\x3f\x14\xd0\x3f\x8c\x8b\x35\x14\xbc\x5a\xde\x53\x05\x70\x90\x62\x83\x23\x53\x9e\x89\xce\x52\x63\x0a\x88\x62\xd6\x53\x6f\x6d\x36\x67\xa5\x3d\x77\x6f\x36\x04\x9a\x4e\xf9\x4a\xbb\x32\x53\x16\x8e\xe1\xa4\xac\x54\x01\x9e\x65\x34\xc2\xbf\xe8\x50\xe5\x45\xdb\x1d\xa4\x58\x4c\xca\xec\x68\x6f\xac\xbd\x2e\x5c\x01\xc5\xe6\x81\xca\x76\x4d\xe7\x03\xed\xc3\x45\x1e\x04\xc0\xe9\x64\x8d\xf6\xd7\x74\x31\xdc\x79\xa8\xd9\x96\xde\xe3\x58\x6f\xd4\xd9\x71\x55\x1f\x20\x7d\x8b\xb1\x34\x45\xff\xf3\x3e\xb5\xbf\x13\xb5\xab\x16\x79\x33\x23\x3d\x0f\x05\xb7\x92\x5b\xb6\xbc\x74\x9e\xd9\x91\x71\xec\xf3\x7f\xda\x2e\x53\xc0\x36\x7e\x3e\x3e\x2c\x07\x23\xf5\x7e\xe7\x9f\xa7\xd1\x3c\x64\xcb\x1a\x67\x24\x70\x4a\x54\xe4\xbc\xfd\x36\x1b\x3b\x45\xfd\x51\x7f\x03\x00\x00\xff\xff\xd2\xf9\x15\xf1\x1e\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdf\x8b\x1b\x37\x10\x7e\xdf\xbf\x62\x70\x02\xbd\xa3\x77\xbe\x4b\xfb\x16\x30\x25\xb4\x10\x02\xa5\x79\xc8\x43\x0a\xe1\x10\x63\x69\x76\x57\xb5\x56\x12\xd2\xc8\x8e\x13\xee\x7f\x2f\xb3\xda\x5d\xdb\xb9\x83\x26\x0f\xdd\x87\xe4\x3c\x3f\xa4\xf9\x66\xbe\xf9\x76\x5f\xc0\xc7\x90\x76\x94\x32\xbc\x29\x1c\x3e\x68\x74\xd6\x77\xf0\x36\x85\x12\x9b\x44\x39\x94\xa4\x09\x56\x78\xc8\x0a\x0b\x87\x5c\xfd\xaa\x13\xff\x0a\x56\x87\x9a\xbb\x82\xaf\x0d\x80\xc7\x81\x60\x03\xab\x97\x5f\xf7\x98\xd6\xda\x95\xcc\x94\x94\x58\x1f\x6f\xab\x2d\x86\xe0\x26\xc3\x9c\xd9\x34\x00\x2f\x40\x87\xe2\xb9\x01\x30\x94\x6d\x22\xa3\x34\x46\xd4\x96\x8f\xb0\x3c\x1b\x90\x03\x6a\x96\x9a\xc3\x07\xeb\x55\xb6\x5f\x08\x9e\x3c\xcf\x87\xe3\xe7\xef\x0e\x87\x9f\xe1\x97\xb1\xa0\x16\x8b\x63\xa5\x43\x70\x26\x1c\xfc\x79\xca\xaf\xf7\x0d\x40\x4f\xe8\xb8\x57\xba\x27\xbd\x53\x5d\x42\x4d\x2a\x52\xb2\xc1\xd4\x80\x11\x9d\x27\x96\xa3\x1b\x80\x7d\xd4\xea\x4b\xf0\xa4\xac\x21\xcf\xb6\xb5\x94\xa6\xbb\x73\xd9\x7a\x62\x65\x4d\xae\x39\x4c\x43\x74\xc8\xd4\x00\x38\x2c\x5e\xf7\x4a\x07\xdf\xda\xae\x24\x64\x1b\x3c\x6c\x40\x66\xf2\x9c\x6b\x82\xb1\x96\x3e\x4f\x67\x61\xea\x88\x61\x1c\x5a\x06\x0e\x70\xe8\xad\xee\xc1\xfa\xcc\xe8\x35\x65\xc8\x7d\x28\xce\xc0\x96\x00\x8d\x21\xd3\xc0\x94\x52\xe7\xac\x30\xf9\x0c\x1b\x68\x1d\x32\x93\xbf\xfa\xd4\x08\xfe\xf1\xfa\xad\x3a\x0f\x9c\x6e\xce\xb7\x3d\x73\x5c\x5b\x73\xf3\x5d\x81\x79\x89\x94\x3e\x9c\x87\x65\x31\x3f\x5c\x0b\x08\x67\x5b\xd2\x47\xed\x68\x64\x9a\x80\x0a\x7b\x4a\xc9\x1a\x02\xee\x69\x1e\x93\xf0\x87\x53\x38\x02\x7a\x03\x89\xa2\x43\x4d\x50\xa2\x41\x26\xd8\x52\x8f\x7b\x1b\xd2\x98\xae\x13\x21\x93\xda\x52\x1b\x12\xa9\x39\x6b\x03\x9c\x8a\x74\xfc\xb1\xf6\xed\x23\x5a\x96\x6d\x68\x43\x5a\x9a\x55\x53\x65\x02\x86\x1c\x1e\xb3\x74\x4c\x62\xa4\x8a\x37\x1f\xde\x4a\x77\x33\x23\xd3\x1a\xde\xb5\xa7\x0e\x57\x92\xa3\xff\x89\xa5\xc9\xf5\x76\x03\x57\xb4\xee\xd6\x90\x63\x60\x88\xc9\x6a\x02\x0e\x01\x5c\x38\x5c\xdf\x2c\xc7\x1d\xac\x73\x92\x12\x52\xec\xd1\x93\x59\x8f\x27\xbd\x9f\x7e\x49\x48\x06\xca\x1a\x23\x81\x76\x84\xbe\xc4\x9b\xd3\x3d\x15\xb9\xb9\x19\xdb\xb1\x23\x8a\xb0\xb5\xb5\x5a\xdb\xd6\x6b\x6d\xad\xac\x64\x32\x6b\xf8\xc3\x66\xdc\x3a\x82\x03\x5a\x16\x1c\xb8\x0f\xd6\x80\xcd\xb9\x50\x1e\x8f\x40\x67\x3b\x0f\x07\xcb\x3d\x04\xee\x29\x81\x76\xa1\x98\x2c\x35\x49\x8e\x6a\x43\x5a\x36\x57\xb1\x1d\x28\x14\x16\x41\xb8\x1f\xb7\x9c\xb1\x7b\xca\xa2\xfa\x2f\x4c\x53\x95\x67\x47\xc7\x67\xd6\x73\xf5\x17\x0e\xb4\x5a\x82\xf6\xe8\xca\xb7\x6b\xfc\x63\xca\x73\x3a\x2b\xa6\x10\xb1\x13\x3a\x20\x4f\x0b\x75\x62\x82\x3c\x8f\x95\x9d\x0f\x37\x17\x15\x0b\x29\x18\x3b\xb0\x5e\x4a\xce\x57\x95\xbc\x5d\xbe\x86\xd7\xdf\x89\x49\xb2\x37\x33\x34\xf8\x0d\x56\x7f\xdf\xd6\x3f\x5f\x8b\xeb\x3f\xb0\xce\xd7\x7d\x62\xec\x1e\x7e\x00\xcb\x09\xca\xc3\x75\xf3\xd8\x34\xb3\xfe\x9f\x04\xe7\x52\xf5\x9f\x53\x98\x45\xf8\x4f\xba\xaf\x62\xa2\xd6\x7e\xfe\xc1\x51\xc8\x10\xec\x80\x9d\xe8\xe1\x39\x38\x17\x34\xba\x35\x0e\x56\x59\x11\xa3\x79\x8d\x14\x1f\x23\x9d\xe1\xbf\xb0\x37\x30\x52\x5a\xd5\x4d\xba\xe8\xd3\xc9\xde\x00\x90\x17\x92\xab\x21\x78\xcb\x21\xc9\x32\x6c\xa0\x45\x97\x47\xad\x2c\x99\x92\x32\xc8\x08\x1b\x90\xff\xd6\x9a\x27\xe8\x93\x64\xdd\xda\xce\xdb\x51\x65\x13\x79\x43\x89\x4c\x95\x8a\xcc\x21\x61\x27\xe7\xa7\x10\x58\x6d\x5d\xd0\x3b\x65\x68\x2f\xb5\x54\x1e\xec\x83\x2b\xc3\x04\xa1\x96\x65\x6c\xde\xcd\xa5\x2f\xfe\xf1\xfd\x74\xe6\x97\xdf\xa3\xdf\x86\x98\x2f\x61\x8d\x7e\x31\x8f\x7e\xf2\x3a\x1d\xa3\xc8\x0a\x3c\x11\xb2\xd3\x0b\x28\x93\x2e\x49\xd6\x73\x7a\x19\x4c\x0d\xba\xb4\x3e\x27\xb8\x77\x77\xf0\xfe\x7f\x54\x5c\x00\xdb\x79\xf1\xe8\x1e\x7d\x47\x67\x48\x3f\xcd\x04\x79\x18\xf1\x9c\x53\xf6\xdd\x34\x0b\xa8\x23\x6a\xc6\xc1\xad\x96\x91\x2d\x34\x5d\x86\x56\xf9\xaa\x83\x67\xf2\x3c\x5f\x30\xce\x79\x66\xbf\x6a\xad\xa3\x79\xd6\xd3\xe4\x97\x49\xcb\x7e\x11\xf3\x51\xb8\xe4\x79\xe1\x0d\x40\xf6\x36\x46\xe2\x7c\x36\x1c\xed\xb4\x9a\xcd\x17\x45\xff\x1e\x3c\xa3\xf5\x94\xe0\x4f\xeb\xcb\xe7\xcb\xda\x2f\xca\x38\xd5\x3f\xe3\x91\xea\xe7\x10\xb9\xde\x3a\xba\x5a\xbd\xfc\x1a\x91\xfb\xf5\x10\x4c\x71\xf4\x78\xa7\xdd\xdd\xf4\x01\x70\xc4\xc1\xad\x79\x88\x6e\x35\xbe\x42\xf7\x98\x64\xde\x75\x9c\xbb\xb2\xa5\x7a\xea\x37\xba\x62\xbd\x7c\x99\x5c\xbd\xba\xbf\x19\x61\x9c\xe2\xae\xc7\xbc\x9c\x7b\x25\x72\xf7\x44\x8f\xfe\xc9\xc1\x93\xd7\xc1\xd0\xa8\x84\x73\x5c\xcd\x9a\x65\xc0\xf8\xac\x32\x25\xd9\x0a\x65\x23\x6c\x40\x5b\x93\xfa\x90\xb9\xe6\x4c\x1e\x31\xde\xc0\xab\xfb\x6f\x72\xc3\x80\xf2\xb9\x57\xda\x51\x67\xe6\x2e\x3f\xe3\x9c\x78\xf2\x6f\x00\x00\x00\xff\xff\xdb\x0d\x9e\xcd\xda\x0a\x00\x00"), }, "/lokomotive-kubernetes/azure": &vfsgen۰DirInfo{ name: "azure", @@ -5481,7 +5474,6 @@ var vfsgenAssets = func() http.FileSystem { fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/ssh.tf"].(os.FileInfo), fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/variables.tf"].(os.FileInfo), fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers"].(os.FileInfo), - fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/workers.tf"].(os.FileInfo), } fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/cl"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/lokomotive-kubernetes/aws/flatcar-linux/kubernetes/cl/controller.yaml.tmpl"].(os.FileInfo), diff --git a/pkg/components/contour/component.go b/pkg/components/contour/component.go index e6de7c09f..76c0dc8ab 100644 --- a/pkg/components/contour/component.go +++ b/pkg/components/contour/component.go @@ -24,7 +24,11 @@ import ( "github.com/kinvolk/lokomotive/pkg/components" ) -const name = "contour" +const ( + name = "contour" + serviceTypeNodePort = "NodePort" + serviceTypeLoadBalancer = "LoadBalancer" +) func init() { components.Register(name, newComponent()) @@ -41,30 +45,44 @@ type component struct { // This solution is a workaround for projectcontour/contour#403 // More details regarding this workaround and other solutions is captured in // https://github.com/kinvolk/PROJECT-Lokomotive-Kubernetes/issues/474 - IngressHosts []string `hcl:"ingress_hosts,optional"` - + IngressHosts []string `hcl:"ingress_hosts,optional"` NodeAffinity []util.NodeAffinity `hcl:"node_affinity,block"` NodeAffinityRaw string - - Tolerations []util.Toleration `hcl:"toleration,block"` - TolerationsRaw string + ServiceType string `hcl:"service_type,optional"` + Tolerations []util.Toleration `hcl:"toleration,block"` + TolerationsRaw string } func newComponent() *component { - return &component{} + return &component{ + ServiceType: serviceTypeLoadBalancer, + } } func (c *component) LoadConfig(configBody *hcl.Body, evalContext *hcl.EvalContext) hcl.Diagnostics { + diagnostics := hcl.Diagnostics{} + if configBody == nil { return hcl.Diagnostics{ components.HCLDiagConfigBodyNil, } } - if err := gohcl.DecodeBody(*configBody, evalContext, c); err != nil { - return err + + d := gohcl.DecodeBody(*configBody, evalContext, c) + if d.HasErrors() { + diagnostics = append(diagnostics, d...) + return diagnostics + } + + // Validate service type. + if c.ServiceType != serviceTypeNodePort && c.ServiceType != serviceTypeLoadBalancer { + diagnostics = append(diagnostics, &hcl.Diagnostic{ + Severity: hcl.DiagError, + Summary: fmt.Sprintf("Unknown service type %q", c.ServiceType), + }) } - return nil + return diagnostics } func (c *component) RenderManifests() (map[string]string, error) { diff --git a/pkg/components/contour/component_test.go b/pkg/components/contour/component_test.go index 064c1e19d..06e38e2d6 100644 --- a/pkg/components/contour/component_test.go +++ b/pkg/components/contour/component_test.go @@ -17,55 +17,92 @@ package contour import ( "testing" - "github.com/hashicorp/hcl/v2" - "github.com/kinvolk/lokomotive/pkg/components/util" ) -func testRenderManifest(t *testing.T, configHCL string) { - body, diagnostics := util.GetComponentBody(configHCL, name) - if diagnostics != nil { - t.Fatalf("Error getting component body: %v", diagnostics) - } - - component := newComponent() - diagnostics = component.LoadConfig(body, &hcl.EvalContext{}) - if diagnostics.HasErrors() { - t.Fatalf("Valid config should not return error, got: %s", diagnostics) - } - - m, err := component.RenderManifests() - if err != nil { - t.Fatalf("Rendering manifests with valid config should succeed, got: %s", err) - } - if len(m) <= 0 { - t.Fatalf("Rendered manifests shouldn't be empty") - } -} - -func TestRenderManifestWithIngressHosts(t *testing.T) { - configHCL := ` +//nolint:funlen +func TestRenderManifest(t *testing.T) { + tests := []struct { + desc string + hcl string + wantErr bool + }{ + { + desc: "With ingress hosts", + hcl: ` component "contour" { ingress_hosts = ["test.domain.com"] } -` - testRenderManifest(t, configHCL) -} - -func TestRenderManifestWithIngressHostsWildcard(t *testing.T) { - configHCL := ` + `, + }, + { + desc: "With ingress hosts wildcard", + hcl: ` component "contour" { ingress_hosts = ["*.domain.com"] } -` - testRenderManifest(t, configHCL) -} - -func TestRenderManifestWithServiceMonitor(t *testing.T) { - configHCL := ` + `, + }, + { + desc: "With monitoring", + hcl: ` component "contour" { enable_monitoring = true } -` - testRenderManifest(t, configHCL) + `, + }, + { + desc: "With service type", + hcl: ` +component "contour" { + service_type = "NodePort" +} + `, + }, + { + desc: "Wrong service type", + hcl: ` +component "contour" { + service_type = "stuff" +} + `, + wantErr: true, + }, + { + desc: "Non-existent field", + hcl: ` +component "contour" { + stuff = 3 +} + `, + wantErr: true, + }, + } + + for _, tc := range tests { + b, d := util.GetComponentBody(tc.hcl, name) + if d != nil { + t.Errorf("%s - Error getting component body: %v", tc.desc, d) + } + + c := newComponent() + d = c.LoadConfig(b, nil) + + if !tc.wantErr && d.HasErrors() { + t.Errorf("%s - Valid config should not return error, got: %s", tc.desc, d) + } + + if tc.wantErr && !d.HasErrors() { + t.Errorf("%s - Wrong config should have returned an error", tc.desc) + } + + m, err := c.RenderManifests() + if err != nil { + t.Errorf("%s - Rendering manifests with valid config should succeed, got: %s", tc.desc, err) + } + + if len(m) == 0 { + t.Errorf("%s - Rendered manifests shouldn't be empty", tc.desc) + } + } } diff --git a/pkg/components/contour/manifest.go b/pkg/components/contour/manifest.go index 0613b0931..01ec6fd3e 100644 --- a/pkg/components/contour/manifest.go +++ b/pkg/components/contour/manifest.go @@ -28,6 +28,9 @@ ingressHosts: {{- end }} {{- end }} +envoy: + serviceType: {{ .ServiceType }} + {{- if .NodeAffinity }} nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: diff --git a/pkg/platform/aws/aws.go b/pkg/platform/aws/aws.go index 1f1120e3b..1b461ff15 100644 --- a/pkg/platform/aws/aws.go +++ b/pkg/platform/aws/aws.go @@ -45,6 +45,8 @@ type workerPool struct { TargetGroups []string `hcl:"target_groups,optional"` CLCSnippets []string `hcl:"clc_snippets,optional"` Tags map[string]string `hcl:"tags,optional"` + LBHTTPPort int `hcl:"lb_http_port,optional"` + LBHTTPSPort int `hcl:"lb_https_port,optional"` } type config struct { diff --git a/pkg/platform/aws/template.go b/pkg/platform/aws/template.go index 2f47ff3e5..538236e9d 100644 --- a/pkg/platform/aws/template.go +++ b/pkg/platform/aws/template.go @@ -49,9 +49,6 @@ module "aws-{{.Config.ClusterName}}" { controller_type = "{{.Config.ControllerType}}" {{- end }} - # Do not allow creation of workers apart from using worker pools. - worker_count = 0 - {{- if .Config.NetworkMTU }} network_mtu = {{.Config.NetworkMTU}} {{- end }} @@ -119,13 +116,22 @@ module "worker-pool-{{ $index }}" { {{- end }} ssh_keys = {{ (index $.WorkerpoolCfg $index "ssh_pub_keys") }} - name = "{{ $pool.Name }}" + cluster_name = "{{ $.Config.ClusterName }}" + pool_name = "{{ $pool.Name }}" worker_count = "{{ $pool.Count}}" os_name = "flatcar" {{- if $pool.InstanceType }} instance_type = "{{ $pool.InstanceType }}" {{- end }} + lb_arn = module.aws-{{ $.Config.ClusterName }}.nlb_arn + {{- if $pool.LBHTTPPort }} + lb_http_port = {{ $pool.LBHTTPPort }} + {{- end }} + {{- if $pool.LBHTTPSPort }} + lb_https_port = {{ $pool.LBHTTPSPort }} + {{- end }} + {{- if $pool.OSChannel }} os_channel = "{{ $pool.OSChannel }}" {{- end }} diff --git a/test/ingress/aws/aws_test.go b/test/ingress/aws/aws_test.go new file mode 100644 index 000000000..c53343f78 --- /dev/null +++ b/test/ingress/aws/aws_test.go @@ -0,0 +1,69 @@ +// Copyright 2020 The Lokomotive Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// +build aws +// +build e2e + +package aws + +import ( + "fmt" + "net/http" + "testing" + "time" + + "github.com/kinvolk/lokomotive/pkg/util/retryutil" + testutil "github.com/kinvolk/lokomotive/test/components/util" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +const ( + retryIntervalSeconds = 5 + maxRetries = 60 +) + +func TestAWSIngress(t *testing.T) { + client := testutil.CreateKubeClient(t) + + i, err := client.NetworkingV1beta1().Ingresses("httpbin").Get("httpbin", metav1.GetOptions{}) + if err != nil { + t.Fatalf("getting httpbin ingress: %v", err) + } + + h := i.Spec.Rules[0].Host + + err = retryutil.Retry(retryIntervalSeconds*time.Second, maxRetries, func() (bool, error) { + resp, err := http.Get(fmt.Sprintf("https://%s/get", h)) + if err != nil { + t.Logf("got an HTTP error: %v", err) + return false, nil + } + + defer func() { + if err := resp.Body.Close(); err != nil { + t.Logf("closing HTTP response body: %v", err) + } + }() + + if resp.StatusCode != http.StatusOK { + t.Logf("got a non-OK HTTP status: %d", resp.StatusCode) + return false, nil + } + + return true, nil + }) + if err != nil { + t.Fatal("could not get a successful HTTP response in time") + } +}