mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
Removed unused variable. Updated Changelog. Formatting.
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
||||
output "cluster_id" {
|
||||
description = "The name/id of the EKS cluster."
|
||||
value = element(concat(aws_eks_cluster.this.*.id, list("")), 0)
|
||||
value = element(concat(aws_eks_cluster.this.*.id, list("")), 0)
|
||||
}
|
||||
|
||||
output "cluster_arn" {
|
||||
@@ -11,7 +11,7 @@ output "cluster_arn" {
|
||||
output "cluster_certificate_authority_data" {
|
||||
description = "Nested attribute containing certificate-authority-data for your cluster. This is the base64 encoded certificate data required to communicate with your cluster."
|
||||
value = element(concat(aws_eks_cluster.this[*].certificate_authority[0].data, list("")), 0)
|
||||
}
|
||||
}
|
||||
|
||||
output "cluster_endpoint" {
|
||||
description = "The endpoint for your EKS Kubernetes API."
|
||||
|
||||
Reference in New Issue
Block a user