简体   繁体   中英

How to set default storage Account for Azure RM Subscription

I am trying to set Azure Rm Subscription ( Get-AzureRMSubscription ) CurrentStorageAccount to a particular arm storage account ( Get-AzureRmStorageAccount ) and I am not able to find a cmdlet that does that.

With regular old azure cmdlets I am able to do following to set CurrentStorageAccount as

$subscription = Get-AzureSubscription
Set-AzureSubscription -SubscriptionName $subscription.SubscriptionName -CurrentStorageAccountName "somestorageaccount"

Get-AzureSubscription | select * 

This set's it. But I cannot do this inside arm cmdlets.

Another thing that is confusing is that I am using the same subscription eg. Visual Studio Enterprise. And using both arm and regular cmdlets get-azuresubscription I get the same subscription but why is one showing -CurrentStorageAccount and another subscription not showing -CurrentStorageAccount.

To set the default RM subscription for the current session in PowerShell use

Get-AzureRmSubscription –SubscriptionName "MyFavSubscription" | Select-AzureRmSubscription

and to set the default RM storage context for the current session

Set-AzureRmCurrentStorageAccount –ResourceGroupName "MyFavResourceGroup" `
                                 –StorageAccountName "MyFavStorageAccountName"

First, you must set your default subscription.

$SubscriptionName = "MyDefaultSubscription"
Select-AzureSubscription -SubscriptionName $SubscriptionName –Default

In other cases, you can set your default subscription location.

# For example, South Central US
$Location = "South Central US"

Then get your storage account name/s

$StorageAccountName = (Get-AzureStorageAccount)[0].label

Notice the number zero? It indicates the numbering of your storage. The numbering starts with 0. If you use the command Get-AzureStorageAccount , it will list all of your (classic) storage accounts. For that you can choose your desired storage.

Then lastly, set your default storage account.

Set-AzureSubscription -SubscriptionName $SubscriptionName -CurrentStorageAccountName $StorageAccountName

该命令行开关名为Set-AzureRMCurrentStorageAccount

Exactly as you said, set-azureRmCurrentStorageAccount -context $Ctx will set your default Storage account to context. I also can't find any articles to get out explanation on this. I think you can try to use Azure CLI to set your default Azure storage account in environment variables.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM