2017-06-27 06:55:39 +02:00
|
|
|
variable "cluster_name" {
|
|
|
|
type = "string"
|
|
|
|
description = "Unique cluster name"
|
|
|
|
}
|
|
|
|
|
2018-02-20 17:36:21 +01:00
|
|
|
variable "region" {
|
2017-06-27 06:55:39 +02:00
|
|
|
type = "string"
|
2018-02-20 17:36:21 +01:00
|
|
|
description = "Google Cloud region (e.g. us-central1, see `gcloud compute regions list`)."
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "network" {
|
|
|
|
type = "string"
|
|
|
|
description = "Name of the network to attach to the compute instance interfaces"
|
|
|
|
}
|
|
|
|
|
2017-08-13 22:02:52 +02:00
|
|
|
variable "dns_zone" {
|
2017-06-27 06:55:39 +02:00
|
|
|
type = "string"
|
|
|
|
description = "Google Cloud DNS Zone value to create etcd/k8s subdomains (e.g. dghubble.io)"
|
|
|
|
}
|
|
|
|
|
2017-08-13 22:02:52 +02:00
|
|
|
variable "dns_zone_name" {
|
2017-06-27 06:55:39 +02:00
|
|
|
type = "string"
|
|
|
|
description = "Google Cloud DNS Zone name to create etcd/k8s subdomains (e.g. dghubble-io)"
|
|
|
|
}
|
|
|
|
|
|
|
|
# instances
|
|
|
|
|
|
|
|
variable "count" {
|
|
|
|
type = "string"
|
|
|
|
description = "Number of controller compute instances the instance group should manage"
|
|
|
|
}
|
|
|
|
|
|
|
|
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"
|
2018-03-26 07:04:14 +02:00
|
|
|
description = "Size of the disk in GB"
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|
|
|
|
|
2018-02-20 17:36:21 +01:00
|
|
|
# configuration
|
2017-06-27 06:55:39 +02:00
|
|
|
|
2017-09-05 06:14:05 +02:00
|
|
|
variable "networking" {
|
|
|
|
description = "Choice of networking provider (flannel or calico)"
|
|
|
|
type = "string"
|
2018-02-20 17:36:21 +01:00
|
|
|
default = "calico"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "kubeconfig" {
|
|
|
|
type = "string"
|
|
|
|
description = "Generated Kubelet kubeconfig"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_authorized_key" {
|
|
|
|
type = "string"
|
|
|
|
description = "SSH public key for logging in as user 'core'"
|
2017-09-05 06:14:05 +02:00
|
|
|
}
|
|
|
|
|
2017-06-27 06:55:39 +02:00
|
|
|
variable "service_cidr" {
|
|
|
|
description = <<EOD
|
2018-03-26 06:36:10 +02:00
|
|
|
CIDR IPv4 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"
|
|
|
|
}
|
|
|
|
|
2018-02-20 17:36:21 +01:00
|
|
|
variable "clc_snippets" {
|
|
|
|
type = "list"
|
|
|
|
description = "Container Linux Config snippets"
|
|
|
|
default = []
|
2017-06-27 06:55:39 +02:00
|
|
|
}
|