AZ-204 • Practice Test 20
Free AZ-204 practice test — 15 questions with explanations. Set 20. No signup required.
Refer to the exhibit. You deploy this ARM template to an App Service named 'myapp'. After deployment, users report they are able to access the app without being prompted to log in. What is the most likely reason?
Refer to the exhibit.
{
"type": "Microsoft.Web/sites/config",
"apiVersion": "2022-03-01",
"name": "[concat(parameters('siteName'), '/authsettingsV2')]",
"properties": {
"platform": {
"enabled": true
},
"globalValidation": {
"requireAuthentication": true,
"unauthenticatedClientAction": "RedirectToLoginPage"
},
"identityProviders": {
"azureActiveDirectory": {
"enabled": true,
"registration": {
"openIdIssuer": "https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0",
"clientId": "11111111-1111-1111-1111-111111111111"
}
}
}
}
}