Is it possible to add more than one disk via Vagrantfile? It's possible with VirtualBox, but I can't find any info about the parallels provider. I also see some info about resizing disks, but not adding. Thanks.
Found a way to do this by using parallels cli from the Vagrantfile. prl.customize ["set", :id, "--device-add", "hdd", "--size", "5120", "--iface", "sata"] Was looking for a native Vagrant method, but this works great and isn't experimental like the VirtualBox method.