如何使用Azure Powershell检索Azure AppService应用程序或功能应用程序系统分配的对象ID

时间:2020-05-14 18:47:35

标签: azure powershell azure-web-app-service azure-powershell

我正在使用Azure Powershell 3.8.0

我正在尝试获取在此屏幕上可以看到的对象ID:

Identity

我尝试使用以下内容:

PS> (Get-AzResource -Name  "func-example").Identity.PrincipalId

但是它与对象ID不匹配。

然后:

PS> (Get-AzWebApp -Name  "func-example" -ResourceGroupName RGNAME).Identity

但也不匹配

有人知道如何使用Azure Powershell来获取该ID吗?

1 个答案:

答案 0 :(得分:1)

您可以执行this

Get-AzADServicePrincipal -DisplayName 'func-example'