mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
adding cluster arn to outputs (#372)
This commit is contained in:
+4
-5
@@ -3,11 +3,10 @@ output "cluster_id" {
|
||||
value = "${aws_eks_cluster.this.id}"
|
||||
}
|
||||
|
||||
# Though documented, not yet supported
|
||||
# output "cluster_arn" {
|
||||
# description = "The Amazon Resource Name (ARN) of the cluster."
|
||||
# value = "${aws_eks_cluster.this.arn}"
|
||||
# }
|
||||
output "cluster_arn" {
|
||||
description = "The Amazon Resource Name (ARN) of the cluster."
|
||||
value = "${aws_eks_cluster.this.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."
|
||||
|
||||
Reference in New Issue
Block a user