我試圖將Azure Rm訂閱(Get-AzureRMSubscription
)CurrentStorageAccount設置爲特定的arm存儲帳戶(Get-AzureRmStorageAccount
),我無法找到一個可以實現這一點的cmdlet。如何爲Azure RM訂閱設置默認存儲帳戶
通過定期老蔚藍的cmdlet我能夠做以下設置CurrentStorageAccount爲
$subscription = Get-AzureSubscription
Set-AzureSubscription -SubscriptionName $subscription.SubscriptionName -CurrentStorageAccountName "somestorageaccount"
Get-AzureSubscription | select *
這一套的吧。但是我不能在arm cmdlet中執行此操作。
另一件令人困惑的事情是,我正在使用相同的訂閱,例如。 Visual Studio Enterprise。並且使用arm和常規cmdlet get-azuresubscription我得到相同的訂閱,但爲什麼顯示-CurrentStorageAccount和另一個訂閱不顯示-CurrentStorageAccount。
因此該命令不起作用。當我執行Get-AzureRmSubscription |時,我將currentstorageaccount看作空白選擇* – Mitul
它設置在上下文中,所以如果我做Get-AzureRMContext,它會給我CurrentStorageAccount – Mitul