Identity & Governance is the largest single domain on the AZ-104 exam (20–25%). Module 01 builds directly on the concepts below — read this first if terms like "tenant," "directory," or "role-based access" are new to you.
These two terms are often confused but mean different things:
Microsoft Entra ID (formerly Azure AD) handles authentication. Role-Based Access Control (RBAC) handles authorization. Module 01 covers both — Lab 01 focuses on Entra ID identities, Lab 02 on RBAC.
A Microsoft Entra tenant (directory) is a dedicated, isolated instance of Entra ID — essentially "your organization's identity database" in the cloud. When you sign up for Azure, a tenant is created automatically. Every user, group, and app registration lives inside a tenant.
Example: Your organization contoso.com has one Entra tenant. All employees' user accounts, the security groups they belong to, and any custom applications registered for SSO all live in that one tenant — even if the organization has multiple Azure subscriptions (billing/resource containers) underneath it.
A tenant is not the same as a subscription. One tenant can be linked to many subscriptions; Module 01 (Lab 03) covers how subscriptions, management groups, and resource groups relate.
| Entra ID roles | Azure RBAC roles | |
|---|---|---|
| Controls access to | The directory (users, groups, licenses) | Azure resources (subscriptions, resource groups, individual resources) |
| Example role | User Administrator | Contributor, Reader, Virtual Machine Contributor |
| Covered in | Lab 01 | Lab 02 |
A classic exam scenario: "User A can sign in but can't create any resources." This is almost always an Azure RBAC problem (no role assignment on the subscription/resource group), not an Entra ID problem — because signing in successfully already proves authentication works. Knowing which layer (AuthN vs. AuthZ) a symptom points to is a recurring exam pattern.
Unfamiliar term? Check the AZ-104 Glossary for quick definitions of every concept used across these docs.
Start with Entra ID Overview (tenants, users, groups in practice), then RBAC Fundamentals (authorization in depth).