Let me define preconfigured Blob Containers, Tables, Queue in ARM template
Right now we can define storage account, account location, name, type of redundancy and some other minor parameters - and it's cool!
But story is not complete without blob containers, tables and queues.
For my app for normal work inside storage account I need containers and tables. But I can't include them inside ARM template right now and it's not cool.
Please, add to a storage template this feature and as a result DevOps story using ARM will be much better.
Support for creating a container in ARM templates is now done. We have begun work to support Tables and Queues.
Here is a link to a sample template to create a container: https://azure.microsoft.com/en-us/resources/templates/101-storage-blob-container/
70 comments
-
tjgalama commented
I see the documenation is now in place:
https://docs.microsoft.com/en-us/azure/templates/microsoft.storage/2019-06-01/storageaccounts/queueservices/queuesDoes this mean this functionality is officially released ?
-
David Smith commented
-
hsakoh commented
-
tjgalama commented
The ARM snippet that Sakoh mentioned works indeed in West Europe. However, I can't find any queueServices documentation for this apiVersion, so it's probably not officially supported yet.
-
hsakoh commented
I'm not sure how long, but I was able to run a template like the one below.
```
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-06-01",
"name": "[parameters('storageAccountName')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"kind": "StorageV2",
"properties": {
"accessTier": "Hot"
},
"resources": [
{
"type": "queueServices/queues",
"apiVersion": "2019-06-01",
"name": "[concat('default/', parameters('queuesName'))]",
"dependsOn": [
"[parameters('storageAccountName')]"
]
}
]
}
``` -
Alexander Batishchev commented
Any update on the Queues, please?
-
Mark commented
+1!
-
Anonymous commented
Any update on tables?
-
Yu Kogasaka commented
Hi,
I'm aware of the status under development for ARM template support for tables and queues.
Is the delivery schedule decided? -
Peter commented
+1
-
Jeffrey Schmitz commented
Is there any update on queues? It's 11 months later now and we are really waiting on this feature for multiple customers.
-
Yadira commented
Hi any update for Tables?
-
Jacques Kang commented
+1 for create storage queue in ARM template.
I can't believe this is impossible currently is there any walkaround?
-
Anonymous commented
What about Files? we need providers for Blob, File, Tables and Queues. right now only BLOB is there and you're saying tables and queue are in the backlog; how about files?
-
Chris Green commented
+1 for creating storage queues via ARM templates
-
Erika commented
Has support for Tables been added to the ARM template yet?
-
Chris Langston commented
+1
-
Scott Lusk commented
+1
-
Russell Slater commented
+1
-
CrazyDev commented
+1