homelab/infra/variable.tf
vincent 7fb16ee116
Some checks failed
continuous-integration/drone/push Build is failing
move to heztner DNS
2023-09-17 19:47:14 +02:00

27 lines
350 B
HCL

variable "hcloud_token" {
type = string
# default = <your-api-token>
}
variable "hdns_token" {
type=string
}
variable "location" {
type=string
default = "hel1"
}
variable "instances" {
type=number
default = "1"
}
variable "server_type" {
type=string
default = "cpx11"
}
variable "os_type" {
type=string
default = "rocky-9"
}