Overview
Joining or registering devices to the Microsoft Entra ID should require Multi-factor authentication.
Rationale
Multi-factor authentication is recommended when adding devices to Microsoft Entra ID. When set to Yes, users who are adding devices from the internet must first use the second authentication method before their device is successfully added to the directory. This ensures that rogue devices are not added to the domain using a compromised user account. Note: Some Microsoft documentation suggests using conditional access policies to join a domain from certain whitelisted networks or devices. Even with these in place, using Multi-Factor Authentication is still recommended, as it creates a process for review before joining the domain.
Impact
There is a slight impact of additional overhead, as Administrators will now have to approve every access to the domain.
Default Value
By default, Require Multi-Factor Authentication to register or join devices with Microsoft Entra is set to No.
Additional Information
If Conditional Access is available, this recommendation should be bypassed in favor of implementing Conditional Access that requires Multifactor Authentication to register or join devices with Microsoft Entra.
Remediation guidance
From Azure Portal
- Open Devices | Device settings
- Set
Require Multi-Factor Authentication to register or join devices with Microsoft EntratoYes.
Multiple Remediation Paths
SERVICE-WIDE (RECOMMENDED when many resources are affected): Apply organization/tenant-level guardrails and baseline policies for the entire platform.
ASSET-LEVEL: Fix only the affected resources identified by this control.
PREVENTIVE: Add preventive policy checks to CI/CD and periodic posture scans.
References for Service-Wide Patterns
- Platform policy/governance and preventive control patterns should be applied tenant-wide where supported.
Query logic
These are the stored checks tied to this control.
Entra tenants allowing device registration/join without MFA
Connectors
Covered asset types
Expected check: eq []
{
connectors(
where: {
deviceRegistrationPolicy: {
NOT: { multiFactorAuthConfiguration: "required" }
}
}
) {
...AssetFragment
}
}