homelab/terraform/cloud/variable.tf
2024-03-17 11:07:58 +01: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"
}