如何通过 Azure 资源管理器模板创建 Azure Blob Container/Table
How can I create an Azure Blob Container/Table by Azure Resource Manager template
我知道我们可以通过 Azure 资源管理器模板创建 Azure 存储帐户。请参阅 this 模板。
问题:我可以通过 Azure 资源管理器模板在存储帐户中创建 Azure Blob 容器/ Table 吗?如何操作?
Question: Can I create an Azure Blob Container/ Table inside a storage
account by Azure Resource Manager template and how to do that?
简单的回答是不可以(至少到今天为止)。
为了在存储帐户中创建 Blob 容器或 Table,您需要使用 Storage REST API
,而模板部署需要 Azure Resource Manager API
。
我知道我们可以通过 Azure 资源管理器模板创建 Azure 存储帐户。请参阅 this 模板。
问题:我可以通过 Azure 资源管理器模板在存储帐户中创建 Azure Blob 容器/ Table 吗?如何操作?
Question: Can I create an Azure Blob Container/ Table inside a storage account by Azure Resource Manager template and how to do that?
简单的回答是不可以(至少到今天为止)。
为了在存储帐户中创建 Blob 容器或 Table,您需要使用 Storage REST API
,而模板部署需要 Azure Resource Manager API
。