mirror of
https://github.com/hashicorp/terraform-provider-helm.git
synced 2026-06-11 01:20:04 -04:00
12 lines
467 B
HCL
12 lines
467 B
HCL
provider "helm" {
|
|
kubernetes = {
|
|
host = "https://${data.google_container_cluster.my_cluster.endpoint}"
|
|
token = data.google_client_config.provider.access_token
|
|
cluster_ca_certificate = base64decode(
|
|
data.google_container_cluster.my_cluster.master_auth[0].cluster_ca_certificate,)
|
|
exec = {
|
|
api_version = "client.authentication.k8s.io/v1beta1"
|
|
command = "gke-gcloud-auth-plugin"
|
|
}
|
|
}
|
|
}
|