1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

Replaced all incorrect aws_eks_cluster.this[count.index] references (there will be just one, so using '[0]').

This commit is contained in:
Tibo Beijen
2019-11-26 11:41:31 +01:00
parent 877865718e
commit d8f4dfc764
3 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ EOS
triggers = {
kube_config_map_rendered = data.template_file.kubeconfig[0].rendered
config_map_rendered = data.template_file.config_map_aws_auth[0].rendered
endpoint = aws_eks_cluster.this[count.index].endpoint
endpoint = aws_eks_cluster.this[0].endpoint
}
}