Skip to content

Commit b185a50

Browse files
committed
Add userGroupDetails field to Microsoft Azure AD Inventory Source
1 parent 5420161 commit b185a50

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/microsoft-azure-ad-inventory-source.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ To configure a Microsoft Azure AD Inventory Source:
9292
:::note
9393
To collect the `signInActivity` information you should have `Azure AD Premium P1/P2` license.
9494
:::
95+
1. **Collect Users Group Details**. By enabling the checkbox, you can also include the user group information in your user response. [Learn more](https://learn.microsoft.com/en-us/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0&tabs=http#http-request).
96+
:::note
97+
To know about the permissions required to collect user group details, refer to the [Microsoft documentation](https://learn.microsoft.com/en-us/graph/api/group-get?view=graph-rest-1.0&tabs=http#permissions).
98+
:::
9599
1. **Processing Rules for Logs**. Configure any desired filters, such as allowlist, denylist, hash, or mask, as described in [Create a Processing Rule](/docs/send-data/collection/processing-rules/create-processing-rule).
96100
1. When you are finished configuring the Source, click **Submit**.
97101

@@ -126,6 +130,7 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma
126130
| application_id | String | Yes | `null` | Provide the Application (client) ID you got after you registered (created) the Azure Application. | |
127131
| supported_apis | Array of strings | Yes | `null` | Define one or more of the available APIs to collect: Devices, and Users.| ["Devices","Users"] |
128132
| userSignInActivity | Boolean | No | False | Select the checkbox to include the sign in activity information in your user response. | |
133+
| userGroupDetails | Boolean | No | False | Select the checkbox to include the user’s group details in your user response. | |
129134

130135
### JSON example
131136

static/files/c2c/microsoft-azure-ad-inventory/example.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
"secret_key": "********",
1212
"application_id": "ApplicationID",
1313
"userSignInActivity": false,
14+
"userGroupDetails": false,
1415
"fields": {
1516
"_siemForward": false
1617
}
1718
},
1819
"sourceType": "Universal"
1920
}
20-
}
21+
}

static/files/c2c/microsoft-azure-ad-inventory/example.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ resource "sumologic_cloud_to_cloud_source" "microsoft-azure-ad-inventory-source"
1010
"secret_key": "********",
1111
"application_id": "ApplicationID",
1212
"userSignInActivity": false,
13+
"userGroupDetails": false,
1314
"fields": {
1415
"_siemForward": false
1516
}

0 commit comments

Comments
 (0)