NOTE: The Azure Service Management Provider has been
superseded by the Azure Resource Manager Provider
and is no longer being actively developed by HashiCorp employees. It continues to be supported by the community.
We recommend using the Azure Resource Manager
based Microsoft Azure Provider
if possible.
» azure_storage_queue
Creates a new storage queue within a given storage service on Azure.
» Example Usage
resource "azure_storage_queue" "stor-queue" {
name = "terraform-storage-queue"
storage_service_name = "tfstorserv"
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the storage queue. Must be unique within the storage service the queue is located. -
storage_service_name
- (Required) The name of the storage service within which the storage queue should be created.
» Attributes Reference
The following attributes are exported:
-
id
- The storage queue ID. Coincides with the givenname
.