1
0
Fork 0
terraform-playground/k8s-cluster/variables.tf

37 lines
505 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"
}
variable "node_count" {
default = 3
}
variable "ip_range" {
default = "10.0.82.0/24"
}