missing disk fixed

This commit is contained in:
tolerryan
2025-02-02 23:51:20 -06:00
parent ca98f2bfbe
commit 9fc34c159c

4
nas.tf
View File

@@ -41,6 +41,7 @@ resource "proxmox_vm_qemu" "nas" {
} }
virtio0 { virtio0 {
#root disk #root disk
disk{
asyncio = "native" asyncio = "native"
discard = "true" discard = "true"
iothread = "true" iothread = "true"
@@ -49,8 +50,10 @@ resource "proxmox_vm_qemu" "nas" {
format = "raw" format = "raw"
media = "disk" media = "disk"
} }
}
virtio1 { virtio1 {
#bulk disk #bulk disk
disk {
asyncio = "native" asyncio = "native"
backup = "false" backup = "false"
iothread = "true" iothread = "true"
@@ -61,6 +64,7 @@ resource "proxmox_vm_qemu" "nas" {
} }
} }
} }
}
# VM Cloud-Init Settings # VM Cloud-Init Settings