BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeMicrosoft Azure Administrator (AZ-104)Cram sheet — Manage Azure subscriptions and governance
Topic Cram Sheet841 words

Cram sheet — Manage Azure subscriptions and governance

AZ-104 › Unit 1 › Manage Azure subscriptions and governance

Cram sheet — Manage Azure subscriptions and governance

Manage Azure subscriptions and governance

Node
AZ104-U1.T3
Objectives
7
Bank questions
59
Grounded documents
7

The heaviest topic in the bank — fifty-nine questions across seven objectives — and the one where exact numbers earn marks. Locks, tags and management groups all have published limits, and the command line uses names the portal does not.

Locks: two levels, two sets of names

Portal nameCommand-line nameWhat it allows
DeleteCanNotDeleteAuthorized users can read and modify the resource, but not delete it
Read-onlyReadOnlyAuthorized users can read it, but not delete or update it
  • Note the command-line spelling: CanNotDelete, with a capital N. It is a favourite of question writers precisely because the portal never shows it.
  • A ReadOnly lock is described as similar to restricting all authorized users to the permissions the Reader role provides.
  • Locks inherit downwards: apply one at a parent scope and every resource inside it inherits the same lock, including resources added later. The most restrictive lock in the chain takes precedence.
  • Locks are a control-plane control. They protect a resource from changes but do not restrict how it performs its function — a ReadOnly lock on a database server still permits data to be written inside its databases.

Tags: the numbers

  • Maximum 50 tag name-value pairs per resource, resource group, and subscription — each, not combined.
  • Tag name limit 512 characters; tag value limit 256 characters. Storage accounts are the exception: their tag name limit is 128.
  • Resources do not inherit tags applied to a resource group or a subscription. If a stem asks for inherited tagging, the answer is a policy that applies them, not the tag itself.
  • Need more than 50? The documented workaround is a JSON string as a single tag value.

Management groups: the numbers

  • A single directory supports 10,000 management groups.
  • A management group tree supports up to six levels of depth — and that depth does not count the root.
  • Each management group and each subscription supports only one parent.
  • The root management group is named Tenant root group by default, its ID is the same value as the Microsoft Entra tenant ID, and it cannot be moved or deleted — unlike every other management group.

Resource groups hold metadata, not resources' locations

  • A resource group stores metadata about the resources, and the location you give it is where that metadata is stored — which is why the choice can matter for compliance.
  • Resources inside a resource group can be in different regions. A resource group is not a region boundary, and a stem that implies otherwise is testing exactly this.
  • Each resource belongs to exactly one resource group at a time; moving it is an explicit operation, not a property you edit.

Policy governs state; RBAC governs actions

This is the cleanest statement of the boundary, and it is worth memorising in the documentation's own terms:

  • Azure Policy ensures that resource state is compliant to your business rules without concern for who made the change or who has permission to make a change.
  • Azure RBAC focuses on managing user actions at different scopes.
  • And the sentence that decides the hardest questions in this topic: even if an individual has access to perform an action, if the result is a non-compliant resource, Azure Policy still blocks the create or update. Permission is not sufficient. Compliance is a second gate.

Policy effects are evaluated in order

The order matters because an earlier effect can prevent a later one from ever firing:

  1. disabled — checked first, to decide whether the rule is evaluated at all.
  2. append and modify — either can alter the request, and that change may stop an audit or deny from triggering.
  3. deny — evaluated before audit, which prevents double logging of a resource that was refused.
  4. audit, then manual, then auditIfNotExists.

A policy assignment governs the state a resource may be in. It never grants, denies or interprets a person's access — that is RBAC's job, and mixing them is the most common wrong answer in this topic.

Budgets do not stop anything

  • Notifications fire when a threshold is exceeded. Resources are not affected and consumption is not stopped. A budget is an alerting construct, not a spending cap.
  • Cost and usage data is typically available within 8 to 24 hours, and budgets are evaluated against it every 24 hours. A budget is not a real-time control either.
  • Budgets reset automatically at the end of each period — monthly, quarterly or annually — for the same amount. When a budget expires, it is automatically deleted.

When a stem says 'prevent', check what kind of prevention it means

A lock prevents a control-plane change. A policy prevents a resource from being created in a shape you disallow. A deny assignment prevents an action. A budget prevents nothing at all — it notifies. Four different mechanisms sharing one English word, and the exam knows it.

Traps

Where Unit 1 Topic 3 catches people

Expecting a budget to stop spending. Expecting tags on a resource group to appear on its resources. Reading a ReadOnly lock as protection for the data inside a resource rather than for the resource itself. Forgetting that the most restrictive inherited lock wins, so a lock two scopes up still blocks you. Reaching for Azure Policy to grant or deny somebody access.

Check yourself

Loading flashcards…

Where these figures come from

Every figure above was read from the raw documentation below on the day this sheet was written. The sha1 is git hash-object over the bytes as fetched, so a doc that changes underneath this sheet can be detected rather than assumed.

Documentsha1
Lock your Azure resources0a4f4f548288
Use tags to organize your Azure resourcesb1d92e330865
What are Azure management groups?d10ee6efe0ee
Manage Azure resource groups by using the Azure portalc2bc52250166
What is Azure Policy?0bc00fcd34d3
Understand Azure Policy effects6cb8a8ec40b0
Tutorial: Create and manage Azure budgets051db0341cf9
All Microsoft Azure Administrator (AZ-104) Study Resources

Related Notes

  • AZ-104 exam map391 words
  • Unit 1 roadmap — Manage Azure identities and governance358 words
  • Unit 1 capstone — Onboarding an acquired subsidiary810 words
  • Lab — A budget notifies and stops nothing166 words
  • Lab — Prove that inheritance only flows one way212 words
  • Lab — Tags do not inherit, and a lock is not a permission204 words
  • Lab — Watch a dynamic group fill itself in183 words
  • Cram sheet — Manage access to Azure resources447 words
  • Cram sheet — Manage Microsoft Entra users and groups580 words
  • Unit 2 roadmap — Implement and manage storage375 words
  • Unit 2 capstone — A media archive on a budget808 words
  • Cram sheet — Configure access to storage520 words

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Microsoft Azure Administrator (AZ-104) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Cram check — Manage Azure subscriptions and governance

Card 1 of 8

Front of flashcard 1 of 8

What are the two lock levels called on the command line?

medium

CanNotDelete and ReadOnly — the portal calls the same two Delete and Read-only.

az-104az104:unit:1cram

Cram check — Manage Azure subscriptions and governance

Card 1

Front

What are the two lock levels called on the command line?

Back

CanNotDelete and ReadOnly — the portal calls the same two Delete and Read-only.

Card 2

Front

How many tags can one resource carry, and are they inherited?

Back

50 name-value pairs, and no — resources do not inherit tags from a resource group or subscription. Use a policy to apply them.

Card 3

Front

How deep can a management group tree go, and how many parents may a subscription have?

Back

Six levels of depth, and exactly one parent.

Card 4

Front

Does exceeding a budget stop consumption?

Back

No. Notifications are triggered; resources are not affected and consumption is not stopped. Budgets are evaluated every 24 hours.

Card 5

Front

Which policy effect is evaluated first, and why does the order matter?

Back

disabled, to decide whether the rule runs at all. Order matters because append and modify can alter a request enough to stop deny or audit from firing.

Card 6

Front

Must every resource in a resource group be in the same region as the group?

Back

No. The group's location is where its METADATA lives; resources inside it can be in different regions.

Card 7

Front

Someone has permission to create a resource, but policy says the result is non-compliant. What happens?

Back

Policy still blocks the create or update. Permission is not sufficient — compliance is a second, independent gate.

Card 8

Front

Which lock wins when two are inherited?

Back

The most restrictive lock in the inheritance chain takes precedence.

Cram check — Manage Azure subscriptions and governance

Card 1

Front

What are the two lock levels called on the command line?

Back

CanNotDelete and ReadOnly — the portal calls the same two Delete and Read-only.

Card 2

Front

How many tags can one resource carry, and are they inherited?

Back

50 name-value pairs, and no — resources do not inherit tags from a resource group or subscription. Use a policy to apply them.

Card 3

Front

How deep can a management group tree go, and how many parents may a subscription have?

Back

Six levels of depth, and exactly one parent.

Card 4

Front

Does exceeding a budget stop consumption?

Back

No. Notifications are triggered; resources are not affected and consumption is not stopped. Budgets are evaluated every 24 hours.

Card 5

Front

Which policy effect is evaluated first, and why does the order matter?

Back

disabled, to decide whether the rule runs at all. Order matters because append and modify can alter a request enough to stop deny or audit from firing.

Card 6

Front

Must every resource in a resource group be in the same region as the group?

Back

No. The group's location is where its METADATA lives; resources inside it can be in different regions.

Card 7

Front

Someone has permission to create a resource, but policy says the result is non-compliant. What happens?

Back

Policy still blocks the create or update. Permission is not sufficient — compliance is a second, independent gate.

Card 8

Front

Which lock wins when two are inherited?

Back

The most restrictive lock in the inheritance chain takes precedence.