我正在嘗試將一些Azure資源從一個訂閱移動到另一個訂閱。我有一個Microsoft帳戶,它是源訂閱和目標訂閱的共同管理員。使用Move-AzureRmResource與不同租戶的不同訂閱
我運行PowerShell和登錄使用以下命令行:
Add-AzureRmAccount -TenantId "source tenant GUID"
然後我用
Move-AzureRmResource -ResourceId "id of the resource" -DestinationResourceGroupName "xxx" -SubscriptionId "target subscription GUID"
我收到此錯誤:
Move-AzureRmResource : LinkedAuthorizationFailed : The client has permission to perform
action 'Microsoft.Resources/subscriptions/resourceGroups/write' on scope '/subscriptions/
xxx/resourceGroups/dotnetportal', however the linked subscription 'target subscription GUID' is not in
current tenant 'source tenant GUID'.
我假設你不能或不想整個訂閱移動到不同的廣告? – SvenAelterman
哦,有可能嗎?我怎樣才能做到這一點? –
您需要從帳戶管理中執行此操作。本文應該幫助您:https://azure.microsoft.com/en-us/documentation/articles/billing-subscription-transfer/ – SvenAelterman