Skip to main content

Parallels provider

This provider allows Vagrant manage virtual machines in Parallels environment.

warning

It is important to have network access to vagrant plugin repository. It is not possible to install this plugin and other Vagrant assets from RU locations.

$ vagrant plugin install vagrant-parallels

After that, we can use Paralles like in example below:

Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|

config.vm.define "example-vm-1" do |ev1|

ev1.vm.box = "gutehall/fedora40"

ev1.vm.provider "parallels" do |p|
p.memory = "1024"
p.cpus = "2"
end

end
end