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.