bulk plus template root

This commit is contained in:
tolerryan
2025-02-06 01:24:43 -06:00
parent ec53564e8e
commit 4babe966b2

23
nas.tf
View File

@@ -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"
}
}
}
}