From 933fd8b3975e709ffcef56c0a2d03d271018c6d7 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 5 Sep 2013 14:34:43 -0700 Subject: [PATCH] website/docs: update vmx wordings --- website/docs/source/v2/vmware/configuration.html.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/website/docs/source/v2/vmware/configuration.html.md b/website/docs/source/v2/vmware/configuration.html.md index d9667918a..b7953d684 100644 --- a/website/docs/source/v2/vmware/configuration.html.md +++ b/website/docs/source/v2/vmware/configuration.html.md @@ -78,4 +78,13 @@ that Vagrant has set up itself. VMX is an undocumented format and there is no official reference for the available keys and values. This customization option is exposed for people who have knowledge of exactly what they want. -That said, the most awaited keys are "memsize" and "numvcpus". + +The most common keys people look for are setting memory and CPUs. +The example below sets both: + +```ruby +config.vm.provider "vmware_fusion" do |v| + v.vmx["memsize"] = "1024" + v.vmx["numvcpus"] = "2" +end +```