From 613fb1ca96375d8b2d80bbd65d9c1105acbaf318 Mon Sep 17 00:00:00 2001 From: Alex Snast Date: Tue, 7 May 2019 15:16:32 +0300 Subject: [PATCH] adding cluster arn to outputs (#372) --- CHANGELOG.md | 3 ++- outputs.tf | 9 ++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffbfb94..b3612a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,10 @@ project adheres to [Semantic Versioning](http://semver.org/). ### Added +- Added support for custom service linked role for Auto Scaling group (by @voanhduy1512) +- Add cluster arn to outputs (by @alexsn) - Added outputs for `workers_user_data` and `workers_default_ami_id` (by @max-rocket-internet) - Added doc about spot instances (by @max-rocket-internet) -- Added support for custom service linked role for Auto Scaling group (by @voanhduy1512) ### Changed diff --git a/outputs.tf b/outputs.tf index 55d20fb..2bca309 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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."