mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 16:36:26 -06:00
[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
5
Vagrantfile
vendored
5
Vagrantfile
vendored
@ -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
Block a user