Files
opentf/website/source/docs/providers/azure/r/storage_queue.html.markdown
George Christou 61277c0dbd website/docs: Run terraform fmt on code examples (#12075)
* docs/vsphere: Fix code block

* docs: Convert `...` to `# ...` to allow `terraform fmt`ing

* docs: Trim trailing whitespace

* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00

898 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
azure Azure: azure_storage_queue docs-azure-storage-queue Creates a new storage queue within a given storage service on Azure.

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 given name.