如何在ARM模板中通过ObjectID获取Azure AD安全组名称?

时间:2019-02-22 16:58:49

标签: azure azure-active-directory arm-template

我正在尝试使用以下方法从其对象ID获取和AAD组名称:

reference(parameters('groupId')).displayName

但是我得到了错误:

The template reference <groupId> is not valid.

我在做什么错?

1 个答案:

答案 0 :(得分:1)

您只能使用reference()函数引用Azure资源,而不能使用Azure AD实体。这是不可能的。您必须在模板外部执行此操作,然后将显示名称传递给模板。