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

feat: Add support for enabling addons before data plane compute is created (#2478)

This commit is contained in:
Bryant Biggs
2023-02-17 07:28:03 -05:00
committed by GitHub
parent f7c25705de
commit 78027f37e4
7 changed files with 71 additions and 13 deletions
+2 -2
View File
@@ -19,12 +19,12 @@ output "cluster_endpoint" {
output "cluster_id" {
description = "The ID of the EKS cluster. Note: currently a value is returned only for local EKS clusters created on Outposts"
value = try(aws_eks_cluster.this[0].cluster_id, null)
value = try(aws_eks_cluster.this[0].cluster_id, "")
}
output "cluster_name" {
description = "The name of the EKS cluster"
value = try(aws_eks_cluster.this[0].name, null)
value = try(aws_eks_cluster.this[0].name, "")
}
output "cluster_oidc_issuer_url" {