ipv4 only edits

This commit is contained in:
2026-09-16 01:18:29 -04:00
parent 7882e85e57
commit 4b92cd198f
5 changed files with 31 additions and 14 deletions
+1 -1
View File
@@ -4,6 +4,6 @@ data "dns_a_record_set" "guests" {
}
data "dns_aaaa_record_set" "guests" {
for_each = var.vm_guests
for_each = toset([for key,value in var.vm_guests: key if value.role != "download_client"])
host = "${each.key}.${var.local_domain}"
}