From 460883d0b291a5e497a07e6efd7c8ef88a507fa0 Mon Sep 17 00:00:00 2001 From: mnkii Date: Tue, 1 Dec 2020 18:27:19 +0000 Subject: [PATCH] Docs: Added Security Group support to Azure Auth (#29418) Support of both Application and Security groups in groupMembershipClaims, as per @pihai suggestion: https://github.com/grafana/grafana/issues/23358#issuecomment-685377338 --- docs/sources/auth/azuread.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/auth/azuread.md b/docs/sources/auth/azuread.md index 7fd8317d77f..fd5d604fd40 100644 --- a/docs/sources/auth/azuread.md +++ b/docs/sources/auth/azuread.md @@ -118,7 +118,7 @@ allowed_groups = 8bab1c86-8fba-33e5-2089-1d1c80ec267d You'll need to ensure that you've [enabled group attributes](https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-fed-group-claims#configure-the-azure-ad-application-registration-for-group-attributes) in your Azure AD Application Registration manifest file (Azure Portal -> Azure Active Directory -> Application Registrations -> Select Application -> Manifest) ```json -"groupMembershipClaims": "ApplicationGroup" +"groupMembershipClaims": "ApplicationGroup, SecurityGroup" ``` The `allowed_domains` option limits access to the users belonging to the specific domains. Domains should be separated by space or comma.