Domain 3 — Module 3 of 8 38%
21 of 26 overall
Domain 3: Describe Azure Management and Governance Free ⏱ ~10 min read

Cost Management and Tags

Azure Cost Management tracks your spending, sets budgets, and sends alerts. Tags organise your resources and help you understand where the money goes.

Tracking and controlling Azure spending

Simple explanation

Think of Azure Cost Management as your banking app.

Your banking app shows you how much you’ve spent this month, what you spent it on, and alerts you if you’re about to overdraw. Azure Cost Management does the same for your cloud bill.

Tags are like labels on your expenses. “Food,” “Transport,” “Entertainment” — they help you see WHERE your money is going. In Azure, you tag resources with “Project: Website” or “Department: Marketing” so you can break down costs by project, team, or environment.

Azure Cost Management

What it does

FeatureDescription
Cost analysisVisualise spending by service, region, resource group, or tag
BudgetsSet monthly/quarterly spending limits with alerts
AlertsEmail notifications when spending reaches 50%, 75%, 90%, 100%
RecommendationsSuggestions to reduce costs (right-size VMs, delete unused resources)
ExportsSchedule automatic exports of cost data to storage accounts

Summit Construction’s Cost Management setup

Summit sets a monthly budget of $3,000 across all subscriptions:

  • 50% alert ($1,500): Email to IT manager — “mid-month check”
  • 75% alert ($2,250): Email to IT manager + finance — “approaching budget”
  • 90% alert ($2,700): Email to all + Slack webhook — “take action”
  • 100% alert ($3,000): Email to CTO — “budget exceeded”

Cost analysis shows them that 60% of their spend is on VMs, 20% on storage, and 15% on networking — helping them identify optimisation targets.

Tags — organising your resources

Tags are name-value pairs you attach to resources for organisation:

Tag NameTag ValuePurpose
EnvironmentProduction / Development / TestIdentify environment
ProjectWebsite / Portal / APITrack costs by project
DepartmentIT / Marketing / FinanceAllocate costs to departments
Ownermaya@summit.comKnow who to contact
CostCenterCC-1042Map to accounting codes

Why tags matter

Use CaseExample
Cost allocation”How much does the Website project cost per month?”
Automation”Shut down all resources tagged Environment: Dev at 6 PM”
Governance”Require all resources to have an Owner tag”
Organisation”Show me all production resources across all subscriptions”
Tags are NOT inherited

Important exam concept: Tags applied to a resource group are NOT automatically inherited by the resources inside it.

If you tag a resource group with Department: IT, the VMs inside that group do NOT automatically get that tag. You must apply tags to individual resources (or use Azure Policy to enforce tagging).

Azure Policy can require tags on resource creation — this prevents untagged resources from being created.

Key exam concept: Tags are for metadata and organisation. They don’t affect how resources function — a VM runs the same whether it’s tagged or not. But without tags, cost analysis becomes nearly impossible at scale.

🎬 Video walkthrough

Flashcards

Question

What does Azure Cost Management provide?

Click or press Enter to reveal answer

Answer

Cost analysis (spending breakdowns), budgets (spending limits with alerts), recommendations (cost savings), and scheduled exports. It helps you monitor, allocate, and optimise Azure spending.

Click to flip back

Question

What are Azure tags?

Click or press Enter to reveal answer

Answer

Name-value pairs applied to resources for organisation, cost tracking, automation, and governance. Example: Environment=Production, Project=Website, Owner=maya@summit.com. Tags are NOT inherited from resource groups.

Click to flip back

Question

Are tags inherited from resource groups to resources?

Click or press Enter to reveal answer

Answer

No. Tags on a resource group are NOT automatically applied to the resources inside it. You must tag resources individually or use Azure Policy to enforce tagging requirements.

Click to flip back

Knowledge Check

Knowledge Check

Summit Construction wants to track Azure spending per construction project. What should they use?

Knowledge Check

An IT manager wants to receive an email alert when Azure spending reaches 80% of a $2,000 monthly budget. Which Azure feature should they configure?


Next up: Azure Governance — Microsoft Purview, Azure Policy, and resource locks.