From d1c13dd9733ab9a7109f0bbb612189c6008e9db2 Mon Sep 17 00:00:00 2001 From: Drew Rothstein Date: Thu, 2 Jan 2020 17:50:52 -0500 Subject: [PATCH] fix typos and incorrect ref to id and not moid (managed) --- website/docs/r/vapp_entity.html.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/r/vapp_entity.html.markdown b/website/docs/r/vapp_entity.html.markdown index d138486e2..df0a75bed 100644 --- a/website/docs/r/vapp_entity.html.markdown +++ b/website/docs/r/vapp_entity.html.markdown @@ -57,13 +57,13 @@ resource "vsphere_vapp_container" "vapp_container" { } resource "vsphere_vapp_entity" "vapp_entity" { - target_id = "vsphere_virtual_machine.vm.id" - container_id = "vsphere_vapp_container.vapp_container.id" - start_action = "non" + target_id = "${vsphere_virtual_machine.vm.moid}" + container_id = "${vsphere_vapp_container.vapp_container.id}" + start_action = "none" } resource "vsphere_virtual_machine" "vm" { - name = "terraform-virutal-machine-test" + name = "terraform-virtual-machine-test" resource_pool_id = "${vsphere_vapp_container.vapp_container.id}" datastore_id = "${data.vsphere_datastore.datastore.id}" num_cpus = 2