Files
terraform/proxmox/archlinux/variables.tf
T

47 lines
590 B
Terraform
Raw Normal View History

2026-09-01 17:31:47 -04:00
variable "vm_guests" {
2026-09-08 02:51:19 -04:00
type = map(object({
2026-09-01 17:31:47 -04:00
host = string
role = string
}))
}
2026-09-02 21:14:55 -04:00
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" {
2026-09-08 02:51:19 -04:00
type = list(string)
2026-09-02 21:14:55 -04:00
}
variable "ipv6_nameservers" {
2026-09-08 02:51:19 -04:00
type = list(string)
2026-09-03 00:35:34 -04:00
}
variable "local_domain" {
type = string
2026-09-08 00:15:03 -04:00
}
variable "arch_mirror" {
type = string
2026-09-01 17:31:47 -04:00
}