mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-29 13:41:47 +02:00
feat: New Karpenter sub-module for easily enabling Karpenter on EKS (#2303)
This commit is contained in:
@@ -17,8 +17,13 @@ output "cluster_endpoint" {
|
||||
value = try(aws_eks_cluster.this[0].endpoint, "")
|
||||
}
|
||||
|
||||
output "cluster_name" {
|
||||
description = "The name of the EKS cluster. Will block on cluster creation until the cluster is really ready"
|
||||
value = try(aws_eks_cluster.this[0].name, "")
|
||||
}
|
||||
|
||||
output "cluster_id" {
|
||||
description = "The name/id of the EKS cluster. Will block on cluster creation until the cluster is really ready"
|
||||
description = "The id of the EKS cluster. Will block on cluster creation until the cluster is really ready"
|
||||
value = try(aws_eks_cluster.this[0].id, "")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user