variable "cluster_name" { type = "string" description = "Unique cluster name" } variable "ssh_authorized_key" { type = "string" description = "SSH public key for logging in as user 'core'" } variable "network" { type = "string" description = "Name of the network to attach to the compute instance interfaces" } variable "dns_base_zone" { type = "string" description = "Google Cloud DNS Zone value to create etcd/k8s subdomains (e.g. dghubble.io)" } variable "dns_base_zone_name" { type = "string" description = "Google Cloud DNS Zone name to create etcd/k8s subdomains (e.g. dghubble-io)" } variable "k8s_domain_name" { type = "string" description = "Controller DNS name which resolves to the controller instance. Kubectl and workers use TLS client credentials to communicate via this endpoint." } # instances variable "count" { type = "string" description = "Number of controller compute instances the instance group should manage" } variable "zone" { type = "string" description = "Google zone that compute instances in the group should be created in (e.g. gcloud compute zones list)" } variable "machine_type" { type = "string" description = "Machine type for compute instances (e.g. gcloud compute machine-types list)" } variable "os_image" { type = "string" description = "OS image from which to initialize the disk (e.g. gcloud compute images list)" } variable "disk_size" { type = "string" default = "40" description = "The size of the disk in gigabytes." } variable "preemptible" { type = "string" default = "false" description = "If enabled, Compute Engine will terminate instances randomly within 24 hours" } // configuration variable "service_cidr" { description = <