无法将 Azure CDN 终结点从一个资源组移动到另一个资源组
Can't move Azure CDN Endpoint from one resource group to another
我正在尝试将 CDN 终结点资源从一个订阅移动到另一个订阅,但出现以下错误。我在同一个 RG 中有 CDN 配置文件和端点。
Identifier
'/subscriptions/xxx/resourceGroups/internal/providers/Microsoft.Cdn/profiles/internal-cdn/endpoints/internal-cdn-endpoint'
is not a top level resource.
能否请您提供一些移动资源的建议?
就像错误说 CDNEndpoint 它在 CDN 配置文件下面,你不能直接移动 CND 端点,你必须将整个 CDN 配置文件移动到目标资源组。
我进行了快速测试,我能够毫无问题地移动 CDN 配置文件,无论是使用门户的移动按钮还是使用以下 powershell 命令:
$SourceAID = (Get-AzureRmResource –ResourceGroupName "ResouceGroupFROM" -ResourceName "CDNPROFILE-NAME").ResourceID
Move-AzureRmResource -DestinationResourceGroupName "ResouceGroupTARGET" -ResourceId $SourceAID
我正在尝试将 CDN 终结点资源从一个订阅移动到另一个订阅,但出现以下错误。我在同一个 RG 中有 CDN 配置文件和端点。
Identifier '/subscriptions/xxx/resourceGroups/internal/providers/Microsoft.Cdn/profiles/internal-cdn/endpoints/internal-cdn-endpoint' is not a top level resource.
能否请您提供一些移动资源的建议?
就像错误说 CDNEndpoint 它在 CDN 配置文件下面,你不能直接移动 CND 端点,你必须将整个 CDN 配置文件移动到目标资源组。
我进行了快速测试,我能够毫无问题地移动 CDN 配置文件,无论是使用门户的移动按钮还是使用以下 powershell 命令:
$SourceAID = (Get-AzureRmResource –ResourceGroupName "ResouceGroupFROM" -ResourceName "CDNPROFILE-NAME").ResourceID
Move-AzureRmResource -DestinationResourceGroupName "ResouceGroupTARGET" -ResourceId $SourceAID