homelab/infra/variable.tf
vincent 55801ac7e1
All checks were successful
continuous-integration/drone/push Build is passing
increase corwin memory
2023-09-21 19:18:48 +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 = "cpx21"
}
variable "os_type" {
type=string
default = "rocky-9"
}