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 +```