Reputation: 359
I knew that we can create an Azure Storage Account by Azure Resource Manager template. See this template.
Question: Can I create an Azure Blob Container/ Table inside a storage account by Azure Resource Manager template and how to do that?
Upvotes: 1
Views: 916
Reputation: 136296
Question: Can I create an Azure Blob Container/ Table inside a storage account by Azure Resource Manager template and how to do that?
Simple answer is that no you can't (at least as of today).
In order to create a Blob Container or Table inside a Storage Account you would need to use Storage REST API
whereas template deployment works off of Azure Resource Manager API
.
Upvotes: 3