variable "vm_guests" { type = list(object({ name = string host = string role = string })) } variable "ipv4_gateway" { type = string } variable "ipv6_gateway" { type = string } variable "ipv4_ntp_servers" { type = list(string) } variable "ipv6_ntp_servers" { type = list(string) } variable "ipv4_subnet_mask" { type = number } variable "search_domains" { type = list(string) } variable "ipv4_nameservers" { type = list(object({ address = string })) } variable "ipv6_nameservers" { type = list(object({ address = string })) } variable "local_domain" { type = string } variable "arch_mirror" { type = string }