Skip to content

Commit

Permalink
fix: Correct late addition merged in
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Oct 31, 2022
1 parent c61c233 commit 16fdd9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/secrets-management/csi-secrets-driver/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ provider "helm" {

provider "kubectl" {
apply_retry_count = 10
host = module.eks_blueprints.eks_cluster_endpoint
cluster_ca_certificate = base64decode(module.eks_blueprints.eks_cluster_certificate_authority_data)
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
load_config_file = false
token = data.aws_eks_cluster_auth.this.token
}
Expand Down

0 comments on commit 16fdd9f

Please sign in to comment.