1
0
Fork 0
terraform-playground/single-host/variables.tf

29 lines
368 B
HCL

variable "hcloud_token" {
sensitive = true
# default = <defined in secret.auto.tfvars>
}
variable "location" {
default = "nbg1"
}
variable "instances" {
default = "1"
}
variable "server_type" {
default = "cx11"
}
variable "os_type" {
default = "debian-11"
}
variable "disk_size" {
default = "20"
}
variable "ip_range" {
default = "10.0.1.0/24"
}