1
0
Fork 0
terraform-playground/k8s-single-node/variables.tf

29 lines
412 B
HCL

variable "hcloud_token" {
sensitive = true
# default = <defined in secret.auto.tfvars>
}
variable "location" {
default = "nbg1"
}
variable "server_type" {
default = "cx21"
}
variable "os_type" {
default = "ubuntu-20.04"
}
variable "docker_version" {
default = "20.10.16"
}
variable "containerd_version" {
default = "1.6.4"
}
variable "kubernetes_version" {
default = "v1.22.4-rancher1-1"
}