From 4babe966b2af5f816d3ab82662e14b57294fbd6c Mon Sep 17 00:00:00 2001 From: tolerryan <105945216+tolerryan@users.noreply.github.com> Date: Thu, 6 Feb 2025 01:24:43 -0600 Subject: [PATCH] bulk plus template root --- nas.tf | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/nas.tf b/nas.tf index 389bece..31dd14a 100644 --- a/nas.tf +++ b/nas.tf @@ -38,6 +38,7 @@ resource "proxmox_vm_qemu" "nas" { # } #} virtio0 { + #This must match the template's drive or it will not use template's drive as root #root disk disk{ asyncio = "native" @@ -48,17 +49,17 @@ resource "proxmox_vm_qemu" "nas" { format = "raw" } } - #virtio1 { - # #bulk disk - # disk { - # asyncio = "native" - # backup = "false" - # iothread = "true" - # size = "8T" - # storage = "local-lvm" - # format = "raw" - # } - #} + virtio1 { + #bulk disk + disk { + asyncio = "native" + backup = "false" + iothread = "true" + size = "8T" + storage = "local-lvm" + format = "raw" + } + } } }