2022-01-13 10:01:59 +01:00
|
|
|
variable "hcloud_token" {
|
2022-01-13 18:34:53 +01:00
|
|
|
description = "Hetzner Cloud API Token"
|
2022-01-13 10:01:59 +01:00
|
|
|
type = string
|
2022-01-13 18:34:53 +01:00
|
|
|
sensitive = true
|
2022-01-13 10:01:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "public_key" {
|
|
|
|
description = "SSH public Key."
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "private_key" {
|
|
|
|
description = "SSH private Key."
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-02-19 15:12:04 +01:00
|
|
|
variable "additional_public_keys" {
|
|
|
|
description = "Additional SSH public Keys. Use them to grant other team members root access to your cluster nodes"
|
|
|
|
type = list(string)
|
|
|
|
default = []
|
|
|
|
}
|
|
|
|
|
2022-01-13 10:01:59 +01:00
|
|
|
variable "location" {
|
|
|
|
description = "Default server location"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-01-29 21:02:00 +01:00
|
|
|
variable "network_region" {
|
|
|
|
description = "Default region for network"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-02-25 19:16:38 +01:00
|
|
|
variable "network_ip_range" {
|
|
|
|
description = "Default IP range for network"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "network_subnets" {
|
|
|
|
description = "Subnets definition for default network"
|
|
|
|
type = map(string)
|
|
|
|
}
|
|
|
|
|
2022-01-13 10:01:59 +01:00
|
|
|
variable "control_plane_server_type" {
|
|
|
|
description = "Default control plane server type"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-02-26 12:04:45 +01:00
|
|
|
variable "control_plane_count" {
|
|
|
|
description = "Number of control plane nodes."
|
|
|
|
type = number
|
|
|
|
}
|
|
|
|
|
2022-01-13 10:01:59 +01:00
|
|
|
|
2022-02-26 12:10:50 +01:00
|
|
|
variable "load_balancer_type" {
|
2022-01-13 10:01:59 +01:00
|
|
|
description = "Default load balancer server type"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2022-02-26 12:10:50 +01:00
|
|
|
variable "load_balancer_disable_ipv6" {
|
2022-01-25 15:05:29 +01:00
|
|
|
description = "Disable ipv6 for the load balancer"
|
|
|
|
type = bool
|
|
|
|
default = false
|
|
|
|
}
|
|
|
|
|
2022-02-23 16:46:46 +01:00
|
|
|
variable "agent_nodepools" {
|
2022-01-13 10:01:59 +01:00
|
|
|
description = "Number of agent nodes."
|
2022-02-24 16:49:36 +01:00
|
|
|
type = map(any)
|
2022-01-13 10:01:59 +01:00
|
|
|
}
|
2022-01-13 13:32:17 +01:00
|
|
|
|
|
|
|
variable "hetzner_ccm_version" {
|
|
|
|
type = string
|
|
|
|
default = null
|
|
|
|
description = "Version of Kubernetes Cloud Controller Manager for Hetzner Cloud"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "hetzner_csi_version" {
|
|
|
|
type = string
|
|
|
|
default = null
|
|
|
|
description = "Version of Container Storage Interface driver for Hetzner Cloud"
|
|
|
|
}
|
2022-01-15 09:04:21 +01:00
|
|
|
|
2022-02-01 23:32:10 +01:00
|
|
|
variable "traefik_acme_tls" {
|
|
|
|
type = bool
|
|
|
|
default = false
|
2022-02-07 16:09:46 +01:00
|
|
|
description = "Whether to include the TLS configuration with the Traefik configuration"
|
2022-02-01 23:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "traefik_acme_email" {
|
|
|
|
type = string
|
|
|
|
default = false
|
|
|
|
description = "Email used to recieved expiration notice for certificate"
|
|
|
|
}
|
|
|
|
|
2022-02-07 16:09:46 +01:00
|
|
|
variable "allow_scheduling_on_control_plane" {
|
|
|
|
type = bool
|
|
|
|
default = false
|
|
|
|
description = "Whether to allow non-control-plane workloads to run on the control-plane nodes"
|
|
|
|
}
|
2022-02-16 03:18:40 +01:00
|
|
|
|
2022-02-23 21:35:42 +01:00
|
|
|
variable "initial_k3s_channel" {
|
2022-02-16 03:18:40 +01:00
|
|
|
type = string
|
|
|
|
default = "stable"
|
2022-02-23 21:35:42 +01:00
|
|
|
description = "Allows you to specify an initial k3s channel"
|
|
|
|
|
|
|
|
validation {
|
|
|
|
condition = contains(["stable", "latest", "testing"], var.initial_k3s_channel)
|
|
|
|
error_message = "The initial k3s channel must be one of stable, latest or testing."
|
|
|
|
}
|
2022-02-16 03:18:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "automatically_upgrade_k3s" {
|
|
|
|
type = bool
|
|
|
|
default = true
|
|
|
|
description = "Whether to automatically upgrade k3s based on the selected channel"
|
|
|
|
}
|