mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-20 15:51:19 +02:00
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:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user