0

我为存储帐户创建了 Azure 专用终结点。当我删除资源组时,似乎首先删除了存储,并且私有端点仍然指向陈旧的存储帐户。我无法再删除私有端点。

即使使用强制选项,我也无法删除。

PS /home/user1> Remove-AzResource -ResourceId /subscriptions/subcription-id/resourceGroups/Testing007/providers/Microsoft.Network/privateEndpoints/pe022 -Force
Remove-AzResource: InternalServerError : An error occurred.
CorrelationId: 45bf24f4-7198-4893-9aa0-5cb527874ba7

PS /home/user1> Remove-AzPrivateEndpoint -ResourceGroupName Testing007 -Name pe022 -Force
Remove-AzPrivateEndpoint: Long running operation failed with status 'Failed'. Additional Info:'An error occurred.'
StatusCode: 200

ReasonPhrase: OK
Status: Failed
ErrorCode: InternalServerError
ErrorMessage: An error occurred.
4

1 回答 1

0

我无法重现您的场景,但有兴趣了解有关“内部错误”的更多信息。你能运行Remove-AzPrivateEndpoint传递的cmdlet-Debug吗?从 Azure 门户中删除它时是否看到相同的错误?

我还发现清除PrivateLinkServiceConnections属性或PrivateLinkServiceId手动更新没有帮助。

看起来过去有一个类似的事件已经修复,但如果它是一个无法从命令行修复的悬空端点,我担心联系支持是唯一的出路。

于 2021-01-05T17:38:37.360 回答