AZ-400 • Practice Test 4
Free AZ-400 practice test — 10 questions with explanations. Set 4. No signup required.
You are reviewing an Azure Policy definition applied to an Azure DevOps project. The project has a build pipeline that deploys to production. What is the effect of this policy on the build pipeline?
Refer to the exhibit.
```json
{
"properties": {
"description": "Policy to require multiple reviewers for critical repos",
"policyType": "Build",
"mode": "Validation",
"initiative": "RequireMinimumReviewers",
"policyRule": {
"if": {
"field": "type",
"equals": "Microsoft.TeamFoundation/teamProjects"
},
"then": {
"effect": "audit",
"details": {
"minimumApproverCount": 2
}
}
}
}
}
```