add disks back to nas.tf

This commit is contained in:
tolerryan
2025-02-06 00:03:44 -06:00
parent 9d8b751f39
commit 9ce25a7abd

39
nas.tf
View File

@@ -23,6 +23,45 @@ resource "proxmox_vm_qemu" "nas" {
# VM Memory Settings # VM Memory Settings
memory = 4024 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 # VM Network Settings
network { network {
bridge = "vmbr0" bridge = "vmbr0"