Files
2026-09-16 01:18:29 -04:00

52 lines
661 B
Terraform

variable "vm_guests" {
type = map(object({
host = string
role = string
description = 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(string)
}
variable "ipv6_nameservers" {
type = list(string)
}
variable "local_domain" {
type = string
}
variable "arch_mirror" {
type = string
}
variable "arch_username" {
type = string
}