[Vagrantfile] set resources for the provider 'virtualbox'

The default resources (384 MByte memory and 1 VCPU)  of the used
box are not sufficient to create binaries for testing Terraform
locally.
This commit is contained in:
Christian Berendt 2015-08-21 19:54:16 +02:00
parent cb49c8da3d
commit 8411e5e5bd
1 changed files with 5 additions and 0 deletions

5
Vagrantfile vendored
View File

@ -53,4 +53,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
v.vmx["numvcpus"] = "2"
end
end
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 2
end
end