Skip to content

Commit

Permalink
fix: Invalid value for "replace" parameter: argument must not be null. (
Browse files Browse the repository at this point in the history
  • Loading branch information
andpozo authored Dec 7, 2022
1 parent f09a643 commit 9adc475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 9adc475

Please sign in to comment.