2017-07-29 20:35:53 +02:00
|
|
|
variable "cluster_name" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Unique cluster name (prepended to dns_zone)"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
# Digital Ocean
|
|
|
|
|
2017-07-29 20:35:53 +02:00
|
|
|
variable "region" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2017-07-29 20:35:53 +02:00
|
|
|
description = "Digital Ocean region (e.g. nyc1, sfo2, fra1, tor1)"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "dns_zone" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2017-08-23 07:56:52 +02:00
|
|
|
description = "Digital Ocean domain (i.e. DNS zone) (e.g. do.example.com)"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
# instances
|
2017-07-29 20:35:53 +02:00
|
|
|
|
|
|
|
variable "controller_count" {
|
2019-10-03 06:48:24 +02:00
|
|
|
type = number
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Number of controllers (i.e. masters)"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = 1
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "worker_count" {
|
2019-10-03 06:48:24 +02:00
|
|
|
type = number
|
2017-07-29 20:35:53 +02:00
|
|
|
description = "Number of workers"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = 1
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
variable "controller_type" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Droplet type for controllers (e.g. s-2vcpu-2gb, s-2vcpu-4gb, s-4vcpu-8gb)."
|
2019-10-03 06:48:24 +02:00
|
|
|
default = "s-2vcpu-2gb"
|
2018-03-26 06:36:10 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 07:56:52 +02:00
|
|
|
variable "worker_type" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2019-06-01 22:49:56 +02:00
|
|
|
description = "Droplet type for workers (e.g. s-1vcpu-2gb, s-2vcpu-2gb)"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = "s-1vcpu-2gb"
|
2017-08-23 07:56:52 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
variable "image" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Container Linux image for instances (e.g. coreos-stable)"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = "coreos-stable"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
2018-02-20 17:36:21 +01:00
|
|
|
variable "controller_clc_snippets" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = list(string)
|
2018-02-20 17:36:21 +01:00
|
|
|
description = "Controller Container Linux Config snippets"
|
|
|
|
default = []
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "worker_clc_snippets" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = list(string)
|
2018-02-20 17:36:21 +01:00
|
|
|
description = "Worker Container Linux Config snippets"
|
|
|
|
default = []
|
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
# configuration
|
|
|
|
|
|
|
|
variable "ssh_fingerprints" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = list(string)
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "SSH public key fingerprints. (e.g. see `ssh-add -l -E md5`)"
|
|
|
|
}
|
2017-07-29 20:35:53 +02:00
|
|
|
|
|
|
|
variable "asset_dir" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2019-10-03 06:48:24 +02:00
|
|
|
description = "Absolute path to a directory where generated assets should be placed (contains secrets)"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
2019-05-06 09:38:23 +02:00
|
|
|
variable "networking" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2019-10-03 06:48:24 +02:00
|
|
|
description = "Choice of networking provider (flannel or calico)"
|
2019-10-16 08:09:41 +02:00
|
|
|
default = "calico"
|
2019-05-06 09:38:23 +02:00
|
|
|
}
|
|
|
|
|
2017-07-29 20:35:53 +02:00
|
|
|
variable "pod_cidr" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2019-10-03 06:48:24 +02:00
|
|
|
description = "CIDR IPv4 range to assign Kubernetes pods"
|
2017-07-29 20:35:53 +02:00
|
|
|
default = "10.2.0.0/16"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "service_cidr" {
|
2019-10-03 06:48:24 +02:00
|
|
|
type = string
|
2017-07-29 20:35:53 +02:00
|
|
|
description = <<EOD
|
2018-03-26 06:36:10 +02:00
|
|
|
CIDR IPv4 range to assign Kubernetes services.
|
2018-07-02 04:41:57 +02:00
|
|
|
The 1st IP will be reserved for kube_apiserver, the 10th IP will be reserved for coredns.
|
2017-07-29 20:35:53 +02:00
|
|
|
EOD
|
|
|
|
default = "10.3.0.0/16"
|
|
|
|
}
|
2017-12-09 22:36:59 +01:00
|
|
|
|
2018-11-20 07:45:02 +01:00
|
|
|
variable "enable_reporting" {
|
2019-10-03 06:48:24 +02:00
|
|
|
type = bool
|
2018-11-20 07:45:02 +01:00
|
|
|
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = false
|
2018-11-20 07:45:02 +01:00
|
|
|
}
|
2019-04-07 11:29:07 +02:00
|
|
|
|
|
|
|
variable "enable_aggregation" {
|
2019-10-03 06:48:24 +02:00
|
|
|
type = bool
|
2019-04-07 11:29:07 +02:00
|
|
|
description = "Enable the Kubernetes Aggregation Layer (defaults to false)"
|
2019-10-03 06:48:24 +02:00
|
|
|
default = false
|
|
|
|
}
|
|
|
|
|
|
|
|
# unofficial, undocumented, unsupported
|
|
|
|
|
|
|
|
variable "cluster_domain_suffix" {
|
2019-05-28 00:37:36 +02:00
|
|
|
type = string
|
2019-10-03 06:48:24 +02:00
|
|
|
description = "Queries for domains with the suffix will be answered by coredns. Default is cluster.local (e.g. foo.default.svc.cluster.local) "
|
|
|
|
default = "cluster.local"
|
2019-04-07 11:29:07 +02:00
|
|
|
}
|
2019-05-28 00:37:36 +02:00
|
|
|
|