Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename from allowed-groups to allowed-group-names #216

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ spring:
redirect-uri-template: http://localhost:8080/
# groups that you created in your Azure AD tenant
user-group:
allowed-groups: group1,group2
allowed-group-names: group1,group2
# Optional, the default value is
# environment: global
```
Expand All @@ -121,7 +121,7 @@ client-id: xxxxxx-your-client-secret-xxxxxx
3. List all the AAD groups `ActiveDirectoryGroups` that you want to have a Spring Security role object mapping to it. The role objects can then be used to manage access to resources that is behind Spring Security. e.g.
```properties
# groups that you created in your Azure AD tenant
allowed-groups: group1,group2
allowed-group-names: group1,group2
```

4. (Optional) If you want to configure oauth2 redirect uri, please configure by :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ spring:
profile:
tenant-id: ${AZURE_TENANT_ID}
user-group:
allowed-groups: group1,group2
allowed-group-names: group1,group2
redirect-uri-template: http://localhost:8080/