From 9ce25a7abd2ea197f9c56e29607de430f786a4ff Mon Sep 17 00:00:00 2001 From: tolerryan <105945216+tolerryan@users.noreply.github.com> Date: Thu, 6 Feb 2025 00:03:44 -0600 Subject: [PATCH] add disks back to nas.tf --- nas.tf | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/nas.tf b/nas.tf index 4a4270d..08d7457 100644 --- a/nas.tf +++ b/nas.tf @@ -23,6 +23,45 @@ resource "proxmox_vm_qemu" "nas" { # VM Memory Settings memory = 4024 + disks { + ide { + ide0 { + cdrom { + iso = "cephfs:iso/debian-12.9.0-amd64-netinst.iso" + } + } + } + virtio { + #virtio2 { + # cdrom { + # iso = "cephfs:iso/debian-12.9.0-amd64-netinst.iso" + # } + #} + virtio0 { + #root disk + disk{ + asyncio = "native" + discard = "true" + iothread = "true" + size = "140G" + storage = "local-lvm" + format = "raw" + } + } + virtio1 { + #bulk disk + disk { + asyncio = "native" + backup = "false" + iothread = "true" + size = "8T" + storage = "local-lvm" + format = "raw" + } + } + } + } + # VM Network Settings network { bridge = "vmbr0"