47 lines
590 B
Terraform
47 lines
590 B
Terraform
variable "vm_guests" {
|
|
type = map(object({
|
|
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(string)
|
|
}
|
|
|
|
variable "ipv6_nameservers" {
|
|
type = list(string)
|
|
}
|
|
|
|
variable "local_domain" {
|
|
type = string
|
|
}
|
|
|
|
variable "arch_mirror" {
|
|
type = string
|
|
} |