使用Terraform动态连接到GKE集群

时间:2020-06-11 19:54:19

标签: kubernetes terraform google-kubernetes-engine kubernetes-helm splunk

我正在使用Terraform脚本启动GKE群集,然后使用头盔3在群集上安装splunk连接器。

如何动态连接到terraform kubernetes提供程序中的新创建的集群?

1 个答案:

答案 0 :(得分:0)

让提供者依赖于群集证书:

data "google_client_config" "terraform_config" {
  provider = google
}

provider "kubernetes" {
  load_config_file = false
  host = "https://${google_container_cluster.my_cluster.endpoint}"
  cluster_ca_certificate = base64decode(google_container_cluster.my_cluster.master_auth[0].cluster_ca_certificate)
  token = data.google_client_config.terraform_config.access_token
}