From 4f7723bed8dddae3eb7fd69fc8ae7cc69f75b4ca Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 16 Sep 2016 16:29:08 +0100 Subject: [PATCH] Updated new lines (#8883) the render in the webpage did not show the code blocks for `Upload file to vSphere` section correctly. --- website/source/docs/providers/vsphere/r/file.html.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/source/docs/providers/vsphere/r/file.html.markdown b/website/source/docs/providers/vsphere/r/file.html.markdown index 6563b9e93a..f4844d72fc 100644 --- a/website/source/docs/providers/vsphere/r/file.html.markdown +++ b/website/source/docs/providers/vsphere/r/file.html.markdown @@ -15,6 +15,7 @@ Updates to file resources will handle moving a file to a new destination (datace ## Example Usages **Upload file to vSphere:** + ``` resource "vsphere_file" "ubuntu_disk_upload" { datacenter = "my_datacenter" @@ -25,6 +26,7 @@ resource "vsphere_file" "ubuntu_disk_upload" { ``` **Copy file within vSphere:** + ``` resource "vsphere_file" "ubuntu_disk_copy" { source_datacenter = "my_datacenter" @@ -48,4 +50,4 @@ The following arguments are supported: * `datacenter` - (Optional) The name of a Datacenter in which the file will be uploaded to. * `source_datastore` - (Optional) The name of the Datastore in which file will be copied from. * `datastore` - (Required) The name of the Datastore in which to upload the file to. -* `create_directories` - (Optional) Create directories in `destination_file` path parameter if any missing for copy operation. *Note: Directories are not deleted on destroy operation. \ No newline at end of file +* `create_directories` - (Optional) Create directories in `destination_file` path parameter if any missing for copy operation. *Note: Directories are not deleted on destroy operation.