Skip to content

Commit

Permalink
Fix indendation kubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
JMGaljaard committed Sep 25, 2023
1 parent ba7243c commit d1dd6d6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions terraform/terraform-dependencies/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
}

provider "google" {
alias = "impersonation"
alias = "impersonation"
scopes = [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/userinfo.email",
Expand Down Expand Up @@ -40,8 +40,8 @@ data "google_container_cluster" "testbed_cluster" {
}

provider "kubernetes" {
host = "https://${data.google_container_cluster.testbed_cluster.endpoint}"
token = data.google_client_config.default.access_token # Provided by Google data object
host = "https://${data.google_container_cluster.testbed_cluster.endpoint}"
token = data.google_client_config.default.access_token # Provided by Google data object
cluster_ca_certificate = base64decode(
data.google_container_cluster.testbed_cluster.master_auth[0].cluster_ca_certificate,
)
Expand All @@ -52,5 +52,4 @@ provider "helm" {
kubernetes {
config_path = var.kubernetes_config_path
}

}

0 comments on commit d1dd6d6

Please sign in to comment.