add disks back to nas.tf
This commit is contained in:
39
nas.tf
39
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"
|
||||
|
||||
Reference in New Issue
Block a user