Merge pull request #23048 from fstoerkle/feature/msgraph-ingest-groups-of

feat: add option to ingest group members from Azure Entra ID
This commit is contained in:
Ben Lambert
2024-07-18 18:48:10 +02:00
committed by GitHub
10 changed files with 182 additions and 4 deletions
+11
View File
@@ -111,6 +111,17 @@ microsoftGraphOrg:
search: '"description:One" AND ("displayName:Video" OR "displayName:Drive")'
```
If you don't want to only ingest groups matching the `search` and/or `filter` query, but also the groups which are members of the matched groups, you can use the `includeSubGroups` configuration:
```yaml
microsoftGraphOrg:
providerId:
group:
filter: securityEnabled eq false and mailEnabled eq true and groupTypes/any(c:c+eq+'Unified')
search: '"description:One" AND ("displayName:Video" OR "displayName:Drive")'
includeSubGroups: true
```
In addition to these groups, one additional group will be created for your organization.
All imported groups will be a child of this group.