mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-31 22:43:07 +02:00
feat: Add support for enabling addons before data plane compute is created (#2478)
This commit is contained in:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user