SC-200 Manage a security operations environment • Set 28
SC-200 Manage a security operations environment Practice Test 28 — 15 questions with explanations. Free, no signup.
The exhibit shows a Conditional Access policy configuration in Microsoft Entra ID. The policy is intended to require MFA and compliant device for all users accessing all applications from trusted locations. However, users are reporting that they are being prompted for MFA even when accessing from the office (which is a trusted location). What is the most likely issue?
Refer to the exhibit.
```json
{
"name": "IT-AAD-001",
"assignments": [
{
"group": "All Users",
"exclude": ["Emergency Break-Glass Accounts"]
}
],
"conditions": {
"applications": ["All applications"],
"users": ["All users"],
"locations": {
"include": ["All trusted locations"],
"exclude": ["All untrusted locations"]
}
},
"grantControls": {
"builtInControls": ["mfa", "requireCompliantDevice"]
}
}
```