Skip to content

Commit

Permalink
Update eks_identity_provider_config.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
LearningNewbie authored Nov 18, 2024
1 parent bdaddc0 commit cf2511c
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
resource "awscc_eks_identity_provider_config" "identity_provider_config" {
cluster_name = awscc_eks_cluster.eks_cluster.name
type = "oidc"
cluster_name = awscc_eks_cluster.eks_cluster.name
type = "oidc"
identity_provider_config_name = "identity_provider_config"

oidc {
client_id = "sts.amazonaws.com"
client_id = "sts.amazonaws.com"
issuer_url = aws_eks_cluster.eks_cluster.identity[0].oidc[0].issuer

} # oid
}

tags = [{
key = "Modified By"
key = "Modified By"
value = "AWSCC"
}]
# depends_on = [aws_eks_cluster.eks_cluster]

}
}

0 comments on commit cf2511c

Please sign in to comment.