1
0
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:
Tibo Beijen
2019-11-30 08:56:24 +01:00
parent 834ba13d60
commit 84b58c7a06
4 changed files with 4 additions and 10 deletions
+2 -2
View File
@@ -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."