generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update eks_identity_provider_config.tf
- Loading branch information
1 parent
bdaddc0
commit cf2511c
Showing
1 changed file
with
8 additions
and
10 deletions.
There are no files selected for viewing
18 changes: 8 additions & 10 deletions
18
examples/resources/awscc_eks_identity_provider_config/eks_identity_provider_config.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
||
} | ||
} |