github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/vsphere/r/folder.html.markdown (about)

     1  ---
     2  layout: "vsphere"
     3  page_title: "VMware vSphere: vsphere_folder"
     4  sidebar_current: "docs-vsphere-resource-folder"
     5  description: |-
     6    Provides a VMware vSphere virtual machine folder resource. This can be used to create and delete virtual machine folders.
     7  ---
     8  
     9  # vsphere\_folder
    10  
    11  Provides a VMware vSphere virtual machine folder resource. This can be used to create and delete virtual machine folders.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "vsphere_folder" "web" {
    17    path = "terraform_web_folder"
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23  The following arguments are supported:
    24  
    25  * `path` - (Required) The path of the folder to be created (relative to the datacenter root); should not begin or end with a "/"
    26  * `datacenter` - (Optional) The name of a Datacenter in which the folder will be created
    27  * `existing_path` - (Computed) The path of any parent folder segments which existed at the time this folder was created; on a
    28  destroy action, the (pre-) existing path is not removed.