使用 blob 和 table 创建存储帐户的 ARM 模板
ARM template to create storage account with both blob and table
是否可以通过 ARM 模板 创建一个带有 blob 容器和 table 存储的 Azure 存储帐户?我看到了创建存储帐户和 blob 容器 (https://docs.microsoft.com/en-us/azure/templates/microsoft.storage/2019-04-01/storageaccounts) 的示例,但没有同时看到 blob 和 table。请提供一些有用的文档。
创建 blob 和 table 需要对以下代码进行哪些更改:
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('name')]",
"apiVersion": "2019-04-01",
"location": "[resourceGroup().location]",
"kind": "StorageV2",
"sku": {
"name": "[parameters('sku')]"
},
"properties": {
"supportsHttpsTrafficOnly": true
},
"identity": {
"type": "SystemAssigned"
}
}
]
我相当确定尚不支持创建表格。 blob\files 是。
是否可以通过 ARM 模板 创建一个带有 blob 容器和 table 存储的 Azure 存储帐户?我看到了创建存储帐户和 blob 容器 (https://docs.microsoft.com/en-us/azure/templates/microsoft.storage/2019-04-01/storageaccounts) 的示例,但没有同时看到 blob 和 table。请提供一些有用的文档。
创建 blob 和 table 需要对以下代码进行哪些更改:
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('name')]",
"apiVersion": "2019-04-01",
"location": "[resourceGroup().location]",
"kind": "StorageV2",
"sku": {
"name": "[parameters('sku')]"
},
"properties": {
"supportsHttpsTrafficOnly": true
},
"identity": {
"type": "SystemAssigned"
}
}
]
我相当确定尚不支持创建表格。 blob\files 是。