From 36c8dadfbd5c69e8a883dee0b76cc16efa93fdc5 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 21 Feb 2026 05:55:32 -0600 Subject: [PATCH] update --- dmz/matrix.tf | 57 --------------------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 dmz/matrix.tf diff --git a/dmz/matrix.tf b/dmz/matrix.tf deleted file mode 100644 index 66dd4c7..0000000 --- a/dmz/matrix.tf +++ /dev/null @@ -1,57 +0,0 @@ -resource "proxmox_vm_qemu" "matrix" { - count = local.matrix.count - ciuser = "administrator" - vmid = "${local.vlan}${local.matrix.ip[count.index]}" - name = local.matrix.name[count.index] - target_node = local.matrix.node[count.index] - clone = local.template - tags = local.matrix.tags - qemu_os = "l26" - full_clone = true - os_type = "cloud-init" - agent = 1 - cores = local.matrix.cores - sockets = 1 - cpu_type = "host" - memory = local.matrix.memory - scsihw = "virtio-scsi-pci" - #bootdisk = "scsi0" - boot = "order=virtio0" - onboot = true - sshkeys = local.sshkeys - vga { - type = "serial0" - } - serial { - id = 0 - type = "socket" - } - disks { - ide { - ide2 { - cloudinit { - storage = local.storage - } - } - } - virtio { - virtio0 { - disk { - size = local.matrix.drive - format = local.format - storage = local.storage - } - } - } - } - network { - id = 0 - model = "virtio" - bridge = "vmbr0" - tag = local.vlan - } - #Cloud Init Settings - ipconfig0 = "ip=192.168.${local.vlan}.${local.matrix.ip[count.index]}/24,gw=192.168.${local.vlan}.1" - searchdomain = "durp.loc" - nameserver = local.dnsserver -}