You are reviewing a Conditional Access policy in Microsoft Entra ID. The exhibit shows the policy configuration. You need to allow users to access Office 365 applications from personal devices that are not enrolled in Microsoft Intune. However, the policy currently blocks access because it requires a compliant device. Users are prompted for MFA but then blocked due to device compliance. What should you modify in the policy?
Exhibit
Refer to the exhibit.
```json
{
"conditions": {
"applications": {
"includeApplications": ["Office365"]
},
"users": {
"includeUsers": ["All"]
},
"locations": {
"includeLocations": ["All"]
}
},
"grantControls": {
"builtInControls": ["mfa", "compliantDevice"]
},
"sessionControls": {
"applicationEnforcedRestrictions": null,
"cloudAppSecurity": {
"cloudAppSecurityType": "monitorOnly"
}
}
}
```Trap 1: Add a session control for sign-in frequency.
This does not remove the device compliance requirement.
Trap 2: Remove the cloudAppSecurity session control.
This does not remove the device compliance requirement.
Trap 3: Change cloudAppSecurityType to "blockDownloads".
This is a session control, not a grant control.
- A
Add a session control for sign-in frequency.
Why wrong: This does not remove the device compliance requirement.
- B
Remove "compliantDevice" from the builtInControls grant control list.
Removing the compliant device requirement allows access from any device.
- C
Remove the cloudAppSecurity session control.
Why wrong: This does not remove the device compliance requirement.
- D
Change cloudAppSecurityType to "blockDownloads".
Why wrong: This is a session control, not a grant control.