A cloud-based identity and access management service for securing user authentication and resource access
Hello Ravi Maurya,
There is no change in functionality, but what you are seeing is due to an update in how Microsoft Entra ID logs Authentication Methods / MFA registration events.
Earlier, for the activity“User registered security info”, the resultReason field was often empty or showed a generic value. Now, Microsoft has updated the logging so that resultReason is always populated with a clearer description of the outcome. In many cases, when there is no more granular detail (for example, method type), it will default to the same value as the activity name.
So in your case:
activityDisplayName = "User registered security info"
result = "success"
resultReason = "User registered security info"
This simply means the user successfully registered a security method, and the system is explicitly recording that in both fields.
As per Microsoft documentation, for combined registration:
- “User registered security info – Success” indicates that a user registered an authentication method https://learn.microsoft.com/en-us/entra/identity/authentication/howto-registration-mfa-sspr-combined-troubleshoot
The resultReason field is designed to describe the outcome of the operation and may contain a textual description of the action performed https://learn.microsoft.com/en-us/azure/azure-monitor/reference/tables/auditlogs
This is expected behavior due to improved audit log verbosity for MFA/SSPR registration events. It does not indicate any issue or tenant-side change.