github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/website/source/docs/providers/azure/r/storage_queue.html.markdown (about)

     1  ---
     2  layout: "azure"
     3  page_title: "Azure: azure_storage_queue"
     4  sidebar_current: "docs-azure-storage-queue"
     5  description: |-
     6      Creates a new storage queue within a given storage service on Azure.
     7  ---
     8  
     9  # azure\_storage\_queue
    10  
    11  Creates a new storage queue within a given storage service on Azure.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "azure_storage_queue" "stor-queue" {
    17      name = "terraform-storage-queue"
    18      storage_service_name = "tfstorserv"
    19  }
    20  ````
    21  
    22  ## Argument Reference
    23  
    24  The following arguments are supported:
    25  
    26  * `name` - (Required) The name of the storage queue. Must be unique within
    27      the storage service the queue is located.
    28  
    29  * `storage_service_name` - (Required) The name of the storage service within
    30      which the storage queue should be created.
    31  
    32  ## Attributes Reference
    33  
    34  The following attributes are exported:
    35  
    36  * `id` - The storage queue ID. Coincides with the given `name`.