Files
2025-12-29 16:29:02 -05:00

22 lines
289 B
HCL

variable "hcloud_token" {
sensitive = true
type = string
}
variable "public_key_file" {
type = string
sensitive = true
}
variable "boxes" {
type = map(object({
private_ip = string
}))
}
variable "routing" {
type = map(object({
from = string
to = string
}))
}