From 9adc475bc1f1a201648e37b26cefe9bdf6b3a2f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Pozo?= Date: Tue, 6 Dec 2022 22:26:12 -0300 Subject: [PATCH] fix: Invalid value for "replace" parameter: argument must not be null. (#2322) --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index dec0540..a0795ec 100644 --- a/outputs.tf +++ b/outputs.tf @@ -105,7 +105,7 @@ output "node_security_group_id" { output "oidc_provider" { 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" {