mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
Fix unsupported attribute on cluster_certificate_authority_data output
Co-Authored-By: Daniel Piddock <33028589+dpiddockcmp@users.noreply.github.com>
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ output "cluster_arn" {
|
|||||||
|
|
||||||
output "cluster_certificate_authority_data" {
|
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."
|
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)
|
value = element(concat(aws_eks_cluster.this[*].certificate_authority[0].data, list("")), 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
output "cluster_endpoint" {
|
output "cluster_endpoint" {
|
||||||
|
|||||||
Reference in New Issue
Block a user