network/terraform/variables.tf

22 lines
380 B
Terraform
Raw Permalink Normal View History

2024-11-02 18:53:21 +00:00
variable "nodes" {
type = map(object({
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
}