AZ-104 Manage Azure Identities and Governance Practice Question
This AZ-104 practice question tests your understanding of manage azure identities and governance. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Policy set draft
Name: Dept-Guardrails
Included rules:
- Allowed locations: East US, West US
- Require tag: CostCenter
- Deny public IP creation on virtual machines
Requirement: The same three controls must be assigned together to all subscriptions in the department, and the department wants one object to manage instead of three separate assignments.
Based on the exhibit, which Azure Policy construct should the administrator use to deploy and manage these guardrails as one unit across the department?
Exhibit
Policy set draft
Name: Dept-Guardrails
Included rules:
- Allowed locations: East US, West US
- Require tag: CostCenter
- Deny public IP creation on virtual machines
Requirement: The same three controls must be assigned together to all subscriptions in the department, and the department wants one object to manage instead of three separate assignments.
A
Create an Azure Policy initiative and assign it at the management group scope.
An initiative groups multiple related policies into one assignable unit, which is ideal when several guardrails must be managed together across many subscriptions.
B
Create an Azure RBAC role assignment at the management group scope.
Why wrong: RBAC controls access permissions, not compliance rules, so a role assignment cannot enforce allowed locations or tag requirements.
C
Apply a ReadOnly lock to each subscription.
Why wrong: A lock blocks management operations, but it does not evaluate compliance or enforce policy conditions like tags and locations.
D
Move all resources into one resource group.
Why wrong: Resource grouping does not enforce guardrails and does not provide a single compliance object for multiple policies.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Create an Azure Policy initiative and assign it at the management group scope.
An Azure Policy initiative is a collection of policy definitions designed to group related policies together for deployment as a single unit. By assigning the initiative at the management group scope, the administrator can enforce consistent guardrails across all subscriptions within that management group, ensuring centralized governance and compliance for the entire department.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
Create an Azure Policy initiative and assign it at the management group scope.
Why this is correct
An initiative groups multiple related policies into one assignable unit, which is ideal when several guardrails must be managed together across many subscriptions.
Related concept
Read the scenario before looking for a memorised answer.
✗
Create an Azure RBAC role assignment at the management group scope.
Why it's wrong here
RBAC controls access permissions, not compliance rules, so a role assignment cannot enforce allowed locations or tag requirements.
When this WOULD be correct
If the question were: 'Which construct should an administrator use to grant a team of developers contributor permissions to all subscriptions in a department?' then creating an RBAC role assignment at the management group scope would be correct.
✗
Apply a ReadOnly lock to each subscription.
Why it's wrong here
A lock blocks management operations, but it does not evaluate compliance or enforce policy conditions like tags and locations.
When this WOULD be correct
An administrator needs to prevent accidental deletion or modification of all resources in a subscription for a critical production environment, and the requirement is to enforce a read-only state across the entire subscription without implementing custom policies.
✗
Move all resources into one resource group.
Why it's wrong here
Resource grouping does not enforce guardrails and does not provide a single compliance object for multiple policies.
When this WOULD be correct
An exam question asks: 'An administrator needs to simplify cost tracking by grouping all resources for a project under a single billing scope. Which action should be taken?' In that case, moving resources into one resource group would be correct.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-104 exam frequently reuses these exact scenarios with slightly different constraints.
✓Create an Azure Policy initiative and assign it at the management group scope.Correct answer▾
Why this is correct
An initiative groups multiple related policies into one assignable unit, which is ideal when several guardrails must be managed together across many subscriptions.
✗Create an Azure RBAC role assignment at the management group scope.Wrong answer — click to see why▾
Why this is wrong here
Azure RBAC role assignments manage permissions for users/groups, not guardrails like policies. The question asks for deploying and managing guardrails (policy rules) as a unit, which requires an initiative, not RBAC.
★ When this WOULD be the correct answer
If the question were: 'Which construct should an administrator use to grant a team of developers contributor permissions to all subscriptions in a department?' then creating an RBAC role assignment at the management group scope would be correct.
Why candidates choose this
Candidates may confuse RBAC with policy because both involve 'assignments' at management group scope, and they might think role assignments can enforce rules like guardrails.
✗Apply a ReadOnly lock to each subscription.Wrong answer — click to see why▾
Why this is wrong here
Applying a ReadOnly lock to each subscription prevents accidental deletion or modification of resources but does not deploy or manage guardrails (policies) as a unit; it is a separate control mechanism, not a policy construct.
★ When this WOULD be the correct answer
An administrator needs to prevent accidental deletion or modification of all resources in a subscription for a critical production environment, and the requirement is to enforce a read-only state across the entire subscription without implementing custom policies.
Why candidates choose this
Candidates may confuse locks with policy guardrails because both are used to enforce compliance and prevent changes, but locks are a simpler, non-policy-based control.
✗Move all resources into one resource group.Wrong answer — click to see why▾
Why this is wrong here
Moving all resources into one resource group does not deploy or manage guardrails as a unit; it only consolidates resources without enforcing any policies or compliance rules.
★ When this WOULD be the correct answer
An exam question asks: 'An administrator needs to simplify cost tracking by grouping all resources for a project under a single billing scope. Which action should be taken?' In that case, moving resources into one resource group would be correct.
Why candidates choose this
Candidates may think that grouping resources together simplifies management and policy enforcement, but resource groups do not provide policy enforcement capabilities.
Analysis generated from the official AZ-104blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is confusing Azure Policy initiatives with RBAC roles or resource locks, as candidates often think access control or resource protection alone can enforce governance guardrails, but only policy initiatives provide the unified, rule-based deployment and management of compliance requirements.
Detailed technical explanation
How to think about this question
Azure Policy initiatives (also known as policy sets) allow grouping multiple individual policy definitions under a single assignment, enabling bulk enforcement of compliance rules. When assigned at the management group scope, the initiative applies to all child subscriptions and resource groups, supporting hierarchical inheritance. Under the hood, Azure Policy uses Azure Resource Manager (ARM) to evaluate resources against the initiative's definitions during create, update, and read operations, with effects like 'Deny', 'Audit', or 'DeployIfNotExists' triggered automatically.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this AZ-104 question in full detail.
Manage Azure Identities and Governance — This question tests Manage Azure Identities and Governance — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Create an Azure Policy initiative and assign it at the management group scope. — An Azure Policy initiative is a collection of policy definitions designed to group related policies together for deployment as a single unit. By assigning the initiative at the management group scope, the administrator can enforce consistent guardrails across all subscriptions within that management group, ensuring centralized governance and compliance for the entire department.
What should I do if I get this AZ-104 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This AZ-104 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-104 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.