infrastructure/network.tjo.cloud/terraform/variables.tf
Tine f72f4284f3
Some checks are pending
/ lint (push) Waiting to run
feat: merge multiple infrastructure repos
2024-12-22 21:11:02 +01:00

22 lines
398 B
HCL

variable "nodes" {
type = map(object({
id = number
host = string
cores = optional(number, 1)
memory = optional(number, 512)
mac_address = optional(string)
bridge_ports = list(string)
gateway = string
address = string
iso_storage = string
boot_storage = string
}))
}
variable "proxmox_token" {
type = string
sensitive = true
}