Skip to content

Commit

Permalink
fix providers
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 1, 2026
1 parent a017cab commit 969cfe6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions examples/full-cluster-tf-upgrade/1.33/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ provider "kubernetes" {
}

provider "helm" {
kubernetes {
host = local.aws_eks_cluster.endpoint

kubernetes = {
host = local.aws_eks_cluster.endpoint
cluster_ca_certificate = base64decode(local.aws_eks_cluster.certificate_authority[0].data)
token = local.aws_eks_cluster_auth.token
}
Expand Down
5 changes: 2 additions & 3 deletions examples/full-cluster-tf-upgrade/1.34/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ provider "kubernetes" {
}

provider "helm" {
kubernetes {
host = local.aws_eks_cluster.endpoint

kubernetes = {
host = local.aws_eks_cluster.endpoint
cluster_ca_certificate = base64decode(local.aws_eks_cluster.certificate_authority[0].data)
token = local.aws_eks_cluster_auth.token
}
Expand Down

0 comments on commit 969cfe6

Please sign in to comment.