Files
N8N/terraform/modules/proxmox_vm_data/variables.tf

16 lines
354 B
Terraform
Raw Normal View History

2026-05-21 13:12:12 +01:00
variable "filename" {
description = "Path to write the vm_data.yml file"
type = string
}
variable "instances" {
description = "Normalized instance map keyed by instance key"
type = map(object({
service_name = string
vm_name = string
node_name = string
ipv4_address = string
vm_tags = list(string)
}))
}