AZ-900 · Describe Cloud Concepts · Updated August 7, 2026
Security, Compliance, and Governance Benefits of the Cloud
Security, compliance, and governance are three separate but connected cloud benefits. Security is what protects your data and infrastructure from threats. Compliance is proof that your environment meets an external regulatory standard. Governance is the set of policies and controls, such as Azure Policy, role-based access control (RBAC), and resource locks, that an organization uses to keep both of those consistent across every subscription it owns. On Azure, you inherit Microsoft’s physical security investment and audited certifications for free, then layer your own governance controls on top to manage cost, access, and risk at scale.
Three related terms, three different jobs
Students preparing for AZ-900 often blur these three terms together because exam scenarios use them interchangeably in the setup text. It helps to separate what each one actually answers:
- Security answers “is this protected from unauthorized access or attack?” It covers physical datacenter protection, encryption, network controls, and identity.
- Compliance answers “can we prove this meets a specific external standard?” It covers certifications such as ISO 27001 and SOC 2, and the audit evidence that backs them up.
- Governance answers “how do we keep policy, cost, and access consistent across a growing environment?” It covers tools like Azure Policy, management groups, RBAC, tags, and resource locks.
A single scenario can touch all three. A hospital moving patient records to Azure needs security (encryption, access control), compliance (proof the platform meets healthcare regulations), and governance (policies that keep every new subscription configured the same way as it scales).
What Microsoft absorbs under the shared responsibility model
Under the shared responsibility model, Microsoft always owns physical security: the fencing, surveillance, badge access, and staffing around its datacenters. An organization running its own facility would have to fund all of that itself; on Azure, every customer benefits from it without owning a single square foot of concrete. What doesn’t move is identity and access management, data classification, and endpoint security; those stay with the customer regardless of which service model (IaaS, PaaS, or SaaS) is in use.
Compliance works the same way. Microsoft maintains a broad portfolio of independently audited certifications and publishes the supporting evidence through its compliance documentation and Service Trust Portal. A government agency or healthcare provider migrating to Azure can point auditors to that documentation instead of re-proving the same infrastructure controls itself. This is a real cost saving: building and maintaining ISO- or SOC-grade evidence for a self-hosted datacenter is expensive and slow, while pointing to a provider’s published audit reports is nearly instant. What compliance certifications do not do is exempt the customer from the regulations that apply to its own data and application logic; the platform being certified doesn’t automatically make everything built on top of it compliant.
Encryption at rest is a related default worth knowing: many Azure services, including Azure Storage, encrypt stored data automatically. That protects the data even if the underlying physical disk were somehow removed or accessed without authorization, at no extra configuration effort from the customer.
Governance tools compared: Policy, RBAC, and resource locks
Once security and compliance are in place, governance is how an organization keeps its own house in order as it adds subscriptions, teams, and resources. Three tools do most of the work, and they solve different problems:
| Tool | Question it answers | Typical use |
|---|---|---|
| Azure Policy | ”Does this resource follow our rules?” | Requiring encryption, blocking disallowed VM sizes or regions, requiring tags |
| Azure RBAC | ”Who is allowed to do what?” | Letting a network team manage virtual networks while app teams only deploy VMs |
| Resource locks | ”Can this specific resource be changed or deleted?” | A Delete lock on a production database’s resource group |
These are complementary, not interchangeable. Azure Policy evaluates configuration and can block non-compliant deployments outright; it doesn’t care who is making the change. RBAC controls permissions by role; it doesn’t inspect the configuration of what gets deployed. Resource locks protect one specific resource or scope from a specific action (delete or any modification); they enforce nothing about configuration and grant no permissions. A well-governed environment typically uses all three together.
Resource tags deserve a mention alongside these. A tag such as CostCenter is metadata, not an enforcement mechanism on its own, but combined with Azure Policy (which can require a tag be present) it supports both cost reporting by department and a consistent tracking standard across the organization.
Enforcing governance at scale with management groups
Individually assigning the same Azure Policy definition to dozens or hundreds of subscriptions doesn’t scale, and manually re-copying settings every quarter guarantees drift. The fix is Azure subscriptions and management groups: subscriptions can be organized under a management group hierarchy, and a policy assigned at the management group level is inherited automatically by every subscription and resource beneath it. A multinational company with production and development subscriptions under one “Corporate” management group only has to assign a policy once; both subscriptions inherit it unless a more specific exclusion is configured. This same hierarchy lets a central security team enforce a baseline everywhere while individual departments keep day-to-day control over their own resource groups.
For a real-time view of security posture layered on top of these controls, Microsoft Defender for Cloud provides a Secure Score and a regulatory compliance dashboard that maps current configuration against standards like PCI DSS, giving a single place to see both security health and compliance status at once. For governance over the data itself, rather than the resources around it, Microsoft Purview applies the same classification and compliance-tracking principles directly to an organization’s data estate.
How the AZ-900 exam tests this
- Term-matching questions. A scenario describes policies and processes for controlling cost, security, and compliance, and asks you to name the concept; the answer is governance, not security or reliability.
- “Who absorbs this responsibility” questions. The exam lists several tasks and asks which one the provider takes on; physical datacenter security is always the provider’s, while identity, data classification, and endpoint management stay with the customer.
- “Where’s the evidence” questions. A regulated organization (government, healthcare, finance) needs to prove a compliance standard is met; the answer is the provider’s published certifications, audit reports, or trust center documentation, never an internal log file or a marketing brochure.
- Scale enforcement questions. An organization with many subscriptions wants one consistent policy applied everywhere with minimal ongoing effort; the answer combines management groups with Azure Policy assigned at that higher scope, not manual per-subscription configuration.
- “Prevent accidental X” questions. A team worries about someone accidentally deleting a critical resource; the answer is a Delete resource lock, not monitoring, tags, or autoscale.
You can work through AZ-900 practice questions covering exactly these discrimination patterns to build the reflex for spotting which of the three (security, compliance, governance) a scenario is really asking about.
Quick reference
- Security protects against threats; compliance proves adherence to a standard; governance keeps policy and access consistent as the environment grows.
- The provider always owns physical datacenter security under the shared responsibility model; identity, data classification, and endpoints stay with the customer.
- Compliance certifications (ISO, SOC) and the Service Trust Portal give auditors evidence without the customer re-proving the same controls.
- Azure Policy enforces configuration rules; RBAC controls who can act; resource locks protect specific resources from delete or modify.
- Management groups let a policy assignment made once at a higher scope apply automatically to every subscription beneath it.
- Microsoft Defender for Cloud’s Secure Score and regulatory compliance dashboard combine security posture and compliance mapping in one view.
- Tags are metadata for cost and tracking; they only become enforceable when paired with an Azure Policy requirement.