From 8411e5e5bd16b1247541d52d9781b1302cddf3c3 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Fri, 21 Aug 2015 19:54:16 +0200 Subject: [PATCH] [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. --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 5b2d70bcc..be5eefddf 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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