简体   繁体   中英

How to Create Terraform code for GKE cluster

We can create/see the gcloud command from GKE cluster creation UI, is there a way to convert the command into terraform code for GKE cluster. thanks

You can create GKE cluster by using terraform. There is a official link , by following you need to write the.tf file and apply.

resource "google_container_cluster" "primary" {
  name     = "my-gke-cluster"
  location = "us-central1"

  initial_node_count       = 1

  master_auth {
    username = ""
    password = ""

    client_certificate_config {
      issue_client_certificate = false
    }
  }
}

This is an useful tutorial.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM