mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-12 05:21:33 +01:00
fix: Invalid value for "replace" parameter: argument must not be null. (#2322)
This commit is contained in:
@@ -105,7 +105,7 @@ output "node_security_group_id" {
|
|||||||
|
|
||||||
output "oidc_provider" {
|
output "oidc_provider" {
|
||||||
description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
|
description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
|
||||||
value = try(replace(aws_eks_cluster.this[0].identity[0].oidc[0].issuer, "https://", null), null)
|
value = try(replace(aws_eks_cluster.this[0].identity[0].oidc[0].issuer, "https://", ""), null)
|
||||||
}
|
}
|
||||||
|
|
||||||
output "oidc_provider_arn" {
|
output "oidc_provider_arn" {
|
||||||
|
|||||||
Reference in New Issue
Block a user