2017-06-27 06:55:39 +02:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
|
|
|
# instances
|
|
|
|
|
|
|
|
variable "count" {
|
|
|
|
type = "string"
|
|
|
|
description = "Number of worker compute instances the instance group should manage"
|
|
|
|
}
|
|
|
|
|
2017-11-04 18:57:12 +01:00
|
|
|
variable "region" {
|
2017-06-27 06:55:39 +02:00
|
|
|
type = "string"
|
2017-11-05 20:09:03 +01:00
|
|
|
description = "Google Cloud region (e.g. us-central1, see `gcloud compute regions list`)."
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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 = <<EOD
|
|
|
|
CIDR IP range to assign Kubernetes services.
|
2017-11-06 07:43:30 +01:00
|
|
|
The 1st IP will be reserved for kube_apiserver, the 10th IP will be reserved for kube-dns.
|
2017-06-27 06:55:39 +02:00
|
|
|
EOD
|
|
|
|
|
|
|
|
type = "string"
|
|
|
|
default = "10.3.0.0/16"
|
|
|
|
}
|
|
|
|
|
2017-12-09 22:36:59 +01:00
|
|
|
variable "cluster_domain_suffix" {
|
|
|
|
description = "Queries for domains with the suffix will be answered by kube-dns. Default is cluster.local (e.g. foo.default.svc.cluster.local) "
|
|
|
|
type = "string"
|
|
|
|
default = "cluster.local"
|
|
|
|
}
|
|
|
|
|
2017-06-27 06:55:39 +02:00
|
|
|
# kubeconfig
|
|
|
|
|
|
|
|
variable "kubeconfig_ca_cert" {
|
|
|
|
type = "string"
|
|
|
|
description = "Generated kubeconfig CA certificate"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "kubeconfig_kubelet_cert" {
|
|
|
|
type = "string"
|
|
|
|
description = "Generated kubeconfig kubelet certificate"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "kubeconfig_kubelet_key" {
|
|
|
|
type = "string"
|
|
|
|
description = "Generated kubeconfig kubelet private key"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "kubeconfig_server" {
|
|
|
|
type = "string"
|
|
|
|
description = "Generated kubeconfig server"
|
|
|
|
}
|