Audit Logs / Microsoft Entra ID AuditLogs category
Audit Logs: MultiTenantOrg
| OperationName | Description | Sample | Rule |
|---|---|---|---|
| Create a Multi | A multitenant organization was created in Microsoft Entra ID. | N | N |
| Hard Delete Multi | Permanent deletion of the tenant's multitenant organization configuration. | N | N |
| Update a Multi | The multitenant organization configuration (member tenants / properties) was updated. | N | N |
Create a MultiTenantOrg
#Description
Records the creation of a multitenant organization in Microsoft Entra ID, the construct that defines a boundary around the tenants an organization owns and groups them for collaboration and cross-tenant synchronization. Establishing a new multitenant organization expands cross-tenant relationships and is relevant to monitoring for unexpected tenant trust.
References #
Hard Delete MultiTenantOrg
#Description
Records the permanent (hard) deletion of the tenant's multitenant organization, the Microsoft Entra construct that defines a boundary around the tenants owned by one organization to enable cross-tenant collaboration.
References #
Update a MultiTenantOrg
#Description
Records an update to the multitenant organization configuration in the tenant: the object that groups multiple Microsoft Entra tenants so they can collaborate as a single organization, including its properties and member-tenant relationships. The entry reflects a change to multitenant-organization membership or configuration.
References #
Rules often query computed field names, not native AuditLogs columns #
Many Entra detection rules pivot on field names that are not columns in this table but KQL projections the rule author computes from two dynamic columns. Searching the field list for those names finds nothing; use the canonical paths instead.
InitiatingUserPrincipalName(and siblingInitiating*names) is not a column. Rules project it fromInitiatedBy, for exampleextend InitiatingUserPrincipalName = tostring(InitiatedBy.user.userPrincipalName). The native paths areInitiatedBy.user.userPrincipalName,InitiatedBy.user.displayName, andInitiatedBy.user.idfor user actors, andInitiatedBy.app.displayName/InitiatedBy.app.appIdfor application or service-principal actors.- What changed lives in
TargetResources, adynamicarray. Expand it before filtering on the change:AuditLogs | mv-expand TargetResources | extend props = TargetResources.modifiedProperties, then readprops[].displayName,props[].oldValue, andprops[].newValue.
Column shapes per the AuditLogs table reference and the Graph directoryAudit resource.