2018-03-04 02:52:01 +01:00
|
|
|
variable "name" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Unique name for the worker pool"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
# AWS
|
|
|
|
|
2018-02-27 07:16:34 +01:00
|
|
|
variable "vpc_id" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Must be set to `vpc_id` output by cluster"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "subnet_ids" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = list(string)
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Must be set to `subnet_ids` output by cluster"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "security_groups" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = list(string)
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Must be set to `worker_security_groups` output by cluster"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# instances
|
|
|
|
|
2019-05-28 01:33:21 +02:00
|
|
|
variable "worker_count" {
|
2019-09-29 20:14:36 +02:00
|
|
|
type = number
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "Number of instances"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = 1
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "instance_type" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "EC2 instance type"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = "t3.small"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:38:05 +02:00
|
|
|
variable "os_image" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2019-06-12 07:13:41 +02:00
|
|
|
description = "AMI channel for a Container Linux derivative (coreos-stable, coreos-beta, coreos-alpha, flatcar-stable, flatcar-beta, flatcar-alpha, flatcar-edge)"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = "coreos-stable"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "disk_size" {
|
2019-09-29 20:14:36 +02:00
|
|
|
type = number
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Size of the EBS volume in GB"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = 40
|
2018-03-26 06:36:10 +02:00
|
|
|
}
|
|
|
|
|
2018-03-29 09:24:07 +02:00
|
|
|
variable "disk_type" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-03-29 09:24:07 +02:00
|
|
|
description = "Type of the EBS volume (e.g. standard, gp2, io1)"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = "gp2"
|
2018-03-29 09:24:07 +02:00
|
|
|
}
|
|
|
|
|
2018-10-15 16:59:35 +02:00
|
|
|
variable "disk_iops" {
|
2019-09-29 20:14:36 +02:00
|
|
|
type = number
|
2018-10-15 16:59:35 +02:00
|
|
|
description = "IOPS of the EBS volume (required for io1)"
|
2019-09-29 20:14:36 +02:00
|
|
|
default = 0
|
2018-10-15 16:59:35 +02:00
|
|
|
}
|
|
|
|
|
2018-04-29 22:19:00 +02:00
|
|
|
variable "spot_price" {
|
2019-09-29 20:14:36 +02:00
|
|
|
type = number
|
|
|
|
description = "Spot price in USD for worker instances or 0 to use on-demand instances"
|
|
|
|
default = 0
|
2018-04-29 22:19:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-01 08:22:47 +02:00
|
|
|
variable "target_groups" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = list(string)
|
2019-04-01 08:22:47 +02:00
|
|
|
description = "Additional target group ARNs to which instances should be added"
|
|
|
|
default = []
|
|
|
|
}
|
|
|
|
|
2018-03-26 06:36:10 +02:00
|
|
|
variable "clc_snippets" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = list(string)
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Container Linux Config snippets"
|
|
|
|
default = []
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# configuration
|
|
|
|
|
|
|
|
variable "kubeconfig" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-03-26 06:36:10 +02:00
|
|
|
description = "Must be set to `kubeconfig` output by cluster"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_authorized_key" {
|
2019-05-28 05:42:48 +02:00
|
|
|
type = string
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "SSH public key for user 'core'"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "service_cidr" {
|
2019-11-14 08:44:02 +01:00
|
|
|
type = string
|
2018-02-27 07:16:34 +01:00
|
|
|
description = <<EOD
|
|
|
|
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.
|
2018-02-27 07:16:34 +01:00
|
|
|
EOD
|
2019-11-14 08:44:02 +01:00
|
|
|
default = "10.3.0.0/16"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "cluster_domain_suffix" {
|
2019-11-14 08:44:02 +01:00
|
|
|
type = string
|
2019-09-29 20:14:36 +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) "
|
2019-11-14 08:44:02 +01:00
|
|
|
default = "cluster.local"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
2019-05-28 05:42:48 +02:00
|
|
|
|
2019-09-28 23:59:24 +02:00
|
|
|
variable "node_labels" {
|
2019-11-14 08:44:02 +01:00
|
|
|
type = list(string)
|
2019-09-29 00:01:14 +02:00
|
|
|
description = "List of initial node labels"
|
2019-11-14 08:44:02 +01:00
|
|
|
default = []
|
2019-09-28 23:59:24 +02:00
|
|
|
}
|