我正在使用Terraform脚本旋转一个GKE集群,然后使用 helm 3在集群上安装splunk连接器。
如何在terraform kubernetes provider中动态连接到新创建的集群?
让提供者依赖集群证书。
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
}