[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:
parent
cb49c8da3d
commit
8411e5e5bd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue