1
我面臨以下問題管理蔚藍的資源管理器存儲的PowerShell
Switch-AzureMode AzureResourceManager
New-AzureStorageAccount -ResourceGroupName "XYZ" -Name "VmTemplateStorage" -Type "Standard_LRS"
# lists the account
Get-AzureStorageAccount
Set-AzureSubscription -SubscriptionName "ABC" -CurrentStorageAccountName -"VmTemplateStorage"
# now this outputs error saying: Storage account 'VmTemplateStorage' was not found.
Get-AzureStorageContainer
我知道,我可以創造「經典」模式存儲賬戶。但後來我無法將它用作使用資源管理器部署的虛擬機映像的源代碼。
然而,這種方式,我無法管理該帳戶,並使用PowerShell來上傳斑點。
任何想法如何管理基於資源管理器的存儲帳戶?