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 5c762e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-parallel-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Ensure log groups are removed
run: |
pip3 install boto3
python3 .github/workflows/delete-log-groups.py
python3 .github/workflows/scripts/delete-log-groups.py
- name: Iamlive Setup & Run
run: |
Expand Down
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 5c762e6

Please sign in to comment.