Hi all, as the title says we want to upgrade our EKS module from 15.2.0 to 16.0.0 - we are using terraform 1.0.2 and we are getting the following error, can someone help us please?
Error: Invalid function argument
│
│ on .terraform/modules/eks/local.tf line 160, in locals:
│ 159: for index in range(var.create_eks ? local.worker_group_count : 0) : templatefile(
│ 160: lookup(
│ 161: var.worker_groups[index],
│ 162: "userdata_template_file",
│ 163: lookup(var.worker_groups[index], "platform", local.workers_group_defaults["platform"]) == "windows"
│ 164: ? "${path.module}/templates/userdata_windows.tpl"
│ 165: : "${path.module}/templates/userdata.sh.tpl"
│ 166: ),
│ 167: merge({
│ 168: platform = lookup(var.worker_groups[index], "platform", local.workers_group_defaults["platform"])
│ 169: cluster_name = coalescelist(aws_eks_cluster.this[*].name, [""])[0]
│ 170: endpoint = coalescelist(aws_eks_cluster.this[*].endpoint, [""])[0]
│ 171: cluster_auth_base64 = coalescelist(aws_eks_cluster.this[*].certificate_authority[0].data, [""])[0]
│ 172: pre_userdata = lookup(
│ 173: var.worker_groups[index],
│ 174: "pre_userdata",
│ 175: local.workers_group_defaults["pre_userdata"],
│ 176: )
│ 177: additional_userdata = lookup(
│ 178: var.worker_groups[index],
│ 179: "additional_userdata",
│ 180: local.workers_group_defaults["additional_userdata"],
│ 181: )
│ 182: bootstrap_extra_args = lookup(
│ 183: var.worker_groups[index],
│ 184: "bootstrap_extra_args",
│ 185: local.workers_group_defaults["bootstrap_extra_args"],
│ 186: )
│ 187: kubelet_extra_args = lookup(
│ 188: var.worker_groups[index],
│ 189: "kubelet_extra_args",
│ 190: local.workers_group_defaults["kubelet_extra_args"],
│ 191: )
│ 192: },
│ 193: lookup(
│ 194: var.worker_groups[index],
│ 195: "userdata_template_extra_args",
│ 196: local.workers_group_defaults["userdata_template_extra_args"]
│ 197: )
│ 198: )
│ 199: )
│ ├────────────────
│ │ local.workers_group_defaults["platform"] is "linux"
│ │ path.module is ".terraform/modules/eks"
│ │ var.worker_groups is tuple with 1 element
│
│ Invalid value for "path" parameter: no file exists at #!/bin/bash -xe
│
│ # Allow user supplied pre userdata code
│ ${pre_userdata}
│
│ # Bootstrap and join the cluster
│ /etc/eks/bootstrap.sh --b64-cluster-ca '${cluster_auth_base64}' --apiserver-endpoint '${endpoint}' ${bootstrap_extra_args} --kubelet-extra-args '${kubelet_extra_args}' '${cluster_name}'
│
│ # Allow user supplied userdata code
│ ${additional_userdata}
│ ; this function works only with files that are distributed as part of the configuration source code, so if this file will be created by a resource in this configuration you must instead obtain this result
│ from an attribute of that resource.