github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/website/source/docs/providers/azure/r/storage_container.html.markdown (about)

     1  ---
     2  layout: "azure"
     3  page_title: "Azure: azure_storage_container"
     4  sidebar_current: "docs-azure-storage-container"
     5  description: |-
     6      Creates a new storage container within a given storage service on Azure.
     7  ---
     8  
     9  # azure\_storage\_container
    10  
    11  Creates a new storage container within a given storage service on Azure.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "azure_storage_container" "stor-cont" {
    17      name = "terraform-storage-container"
    18      container_access_type = "blob"
    19      storage_service_name = "tfstorserv"
    20  }
    21  ````
    22  
    23  ## Argument Reference
    24  
    25  The following arguments are supported:
    26  
    27  * `name` - (Required) The name of the storage container. Must be unique within
    28      the storage service the container is located.
    29  
    30  * `storage_service_name` - (Required) The name of the storage service within
    31      which the storage container should be created.
    32  
    33  * `container_access_type` - (Required) The 'interface' for access the container
    34      provides. Can be either `blob`, `container` or ``.
    35  
    36  * `properties` - (Optional) Key-value definition of additional properties
    37      associated to the storage service.
    38  
    39  ## Attributes Reference
    40  
    41  The following attributes are exported:
    42  
    43  * `id` - The storage container ID. Coincides with the given `name`.