将资源从一个活动目录移动到同一订阅中的另一个
Moving a resource from an active directory to another within the same subscription
我在 Active Directory AC1 下有一个 Azure 资源组,我想将其移动到同一订阅中的另一个 Active Directory AC2。如何使用 UI 或 powershell(或任何其他方式)实现此目的?为了让事情变得更简单,我可以忘记所有关于资源组本身的事情,只是为了争论,假设我在 AC1 中有一个资源 R1,我想在同一个订阅中移动到 AC2。
如何在不在目标目录中重新创建资源的情况下执行此操作?
因此,考虑到信息在 Azure 门户中呈现的方式,人们会认为 Azure 订阅包含一个或多个 Azure AD,这是不正确的。来自 https://azure.microsoft.com/en-in/documentation/articles/active-directory-how-subscriptions-associated-directory/
:
Every Azure subscription has a trust relationship with an Azure AD
instance. This means that it trusts that directory to authenticate
users, services, and devices. Multiple subscriptions can trust the
same directory, but a subscription trusts only one directory.
因此,为了回答您的问题,您可以将资源从一个 Azure 订阅移动到另一个,前提是两个订阅都使用相同的 Azure AD 作为信任库。没有自动的方式将资源从一个信任一个 Azure AD 的 Azure 订阅移动到另一个信任另一个 Azure AD 的 Azure 订阅。
我在 Active Directory AC1 下有一个 Azure 资源组,我想将其移动到同一订阅中的另一个 Active Directory AC2。如何使用 UI 或 powershell(或任何其他方式)实现此目的?为了让事情变得更简单,我可以忘记所有关于资源组本身的事情,只是为了争论,假设我在 AC1 中有一个资源 R1,我想在同一个订阅中移动到 AC2。
如何在不在目标目录中重新创建资源的情况下执行此操作?
因此,考虑到信息在 Azure 门户中呈现的方式,人们会认为 Azure 订阅包含一个或多个 Azure AD,这是不正确的。来自 https://azure.microsoft.com/en-in/documentation/articles/active-directory-how-subscriptions-associated-directory/
:
Every Azure subscription has a trust relationship with an Azure AD instance. This means that it trusts that directory to authenticate users, services, and devices. Multiple subscriptions can trust the same directory, but a subscription trusts only one directory.
因此,为了回答您的问题,您可以将资源从一个 Azure 订阅移动到另一个,前提是两个订阅都使用相同的 Azure AD 作为信任库。没有自动的方式将资源从一个信任一个 Azure AD 的 Azure 订阅移动到另一个信任另一个 Azure AD 的 Azure 订阅。