From fae25a9ed8485aba839ffd1dc6e187bb1fe83bc7 Mon Sep 17 00:00:00 2001 From: Takaaki Furukawa Date: Mon, 7 Dec 2015 10:49:04 +0900 Subject: [PATCH] Update a default example in VMware vSphere provider --- website/source/docs/providers/vsphere/index.html.markdown | 3 +-- .../docs/providers/vsphere/r/virtual_machine.html.markdown | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/website/source/docs/providers/vsphere/index.html.markdown b/website/source/docs/providers/vsphere/index.html.markdown index db0edc192..2fa79bd7e 100644 --- a/website/source/docs/providers/vsphere/index.html.markdown +++ b/website/source/docs/providers/vsphere/index.html.markdown @@ -41,8 +41,7 @@ resource "vsphere_virtual_machine" "web" { } disk { - size = 1 - iops = 500 + template = "centos-7" } } ``` diff --git a/website/source/docs/providers/vsphere/r/virtual_machine.html.markdown b/website/source/docs/providers/vsphere/r/virtual_machine.html.markdown index 003edaf46..605778503 100644 --- a/website/source/docs/providers/vsphere/r/virtual_machine.html.markdown +++ b/website/source/docs/providers/vsphere/r/virtual_machine.html.markdown @@ -24,8 +24,7 @@ resource "vsphere_virtual_machine" "web" { } disk { - size = 1 - iops = 500 + template = "centos-7" } } ```