Skip to content

Commit 9adc475

Browse files
authored
fix: Invalid value for "replace" parameter: argument must not be null. (terraform-aws-modules#2322)
1 parent f09a643 commit 9adc475

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ output "node_security_group_id" {
105105

106106
output "oidc_provider" {
107107
description = "The OpenID Connect identity provider (issuer URL without leading `https://`)"
108-
value = try(replace(aws_eks_cluster.this[0].identity[0].oidc[0].issuer, "https://", null), null)
108+
value = try(replace(aws_eks_cluster.this[0].identity[0].oidc[0].issuer, "https://", ""), null)
109109
}
110110

111111
output "oidc_provider_arn" {

0 commit comments

Comments
 (0)