The following arguments are supported:
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_storage_account" "example" {
name = "examplestorageacc"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
account_tier = "Standard"
account_replication_type = "LRS"
}
resource "azurerm_storage_queue" "example" {
name = "mysamplequeue"
storage_account_name = azurerm_storage_account.example.name
}
az storage queue create --name
[--account-key]
[--account-name]
[--auth-mode {key, login}]
[--connection-string]
[--fail-on-exist]
[--metadata]
[--queue-endpoint]
[--sas-token]
[--timeout]
az storage queue create -n myqueue --metadata key1=value1 key2=value2 --account-name mystorageaccount
Categorized by Availability, Security & Compliance and Cost