25 lines
329 B
HCL
25 lines
329 B
HCL
variable "hcloud_token" {
|
|
sensitive = true
|
|
# default = <defined in secret.auto.tfvars>
|
|
}
|
|
|
|
variable "location" {
|
|
default = "nbg1"
|
|
}
|
|
|
|
variable "server_type" {
|
|
default = "cx11"
|
|
}
|
|
|
|
variable "os_type" {
|
|
default = "debian-11"
|
|
}
|
|
|
|
variable "instance_count" {
|
|
default = 3
|
|
}
|
|
|
|
variable "ip_range" {
|
|
default = "10.0.30.0/24"
|
|
}
|