Skip to content
Snippets Groups Projects
Commit 266b1d25 authored by Tim Ioannidis's avatar Tim Ioannidis
Browse files

fix: update providers to include protocol prefix

parent cf06b96b
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ provider "google" { ...@@ -3,7 +3,7 @@ provider "google" {
} }
provider "kubernetes" { provider "kubernetes" {
host = google_container_cluster.primary.endpoint host = "https://${google_container_cluster.primary.endpoint}"
cluster_ca_certificate = base64decode(google_container_cluster.primary.master_auth.0.cluster_ca_certificate) cluster_ca_certificate = base64decode(google_container_cluster.primary.master_auth.0.cluster_ca_certificate)
token = data.google_client_config.current.access_token token = data.google_client_config.current.access_token
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment