【发布时间】:2016-04-27 23:47:14
【问题描述】:
我正在使用 AzureRm Powershell commandlet 发布一个 Azure 资源管理器模板,一切似乎都运行良好。除非它预配“Microsoft.Storage/storageAccounts”类型的资源,否则它需要 10 多分钟才能完成。这符合预期吗?我不记得以前花了这么长时间。
我正在部署到美国东部,使用 Standard_LRS 存储类型。
{
"name": "[parameters('storageName')]",
"type": "Microsoft.Storage/storageAccounts",
"location": "[parameters('deployLocation')]",
"apiVersion": "2015-06-15",
"dependsOn": [ ],
"tags": {
"displayName": "[parameters('storageName')]"
},
"properties": {
"accountType": "[parameters('storageType')]"
}
}
【问题讨论】:
标签: azure azure-storage azure-resource-manager