Cluster oidc issuer url string (#626)

* cluster_oidc_issuer_url to string

change cluster_oidc_issuer_url output to return string

* Update CHANGELOG.md

adding entry to changelog

* Update outputs.tf

Co-Authored-By: Daniel Piddock <33028589+dpiddockcmp@users.noreply.github.com>
This commit is contained in:
chewvader
2019-12-12 08:44:45 -08:00
committed by Max Williams
parent 11d8ee8631
commit 77f947ec91
2 changed files with 2 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ output "cluster_iam_role_arn" {
output "cluster_oidc_issuer_url" {
description = "The URL on the EKS cluster OIDC Issuer"
value = concat(aws_eks_cluster.this[*].identity[*].oidc.0.issuer, [""])[0]
value = flatten(concat(aws_eks_cluster.this[*].identity[*].oidc.0.issuer, [""]))[0]
}
output "cloudwatch_log_group_name" {