Quang Hoàng
Quang Hoàng

Reputation: 359

How can I create an Azure Blob Container/Table by Azure Resource Manager template

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

Answers (1)

Gaurav Mantri
Gaurav Mantri

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

Related Questions