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

Fix errors manifesting when used on an existing-cluster

This commit is contained in:
syst0m
2019-11-07 17:52:25 +00:00
parent a3009b1ecc
commit 880fd427a4
5 changed files with 10 additions and 7 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ output "cluster_security_group_id" {
output "config_map_aws_auth" {
description = "A kubernetes configuration to authenticate to this EKS cluster."
value = data.template_file.config_map_aws_auth.rendered
value = concat(data.template_file.config_map_aws_auth[*].rendered, [""])[0]
}
output "cluster_iam_role_name" {
@@ -55,7 +55,7 @@ output "cloudwatch_log_group_name" {
output "kubeconfig" {
description = "kubectl config file contents for this EKS cluster."
value = data.template_file.kubeconfig.rendered
value = concat(data.template_file.kubeconfig[*].rendered, [""])[0]
}
output "kubeconfig_filename" {