Cloud Knowledge

Your Go-To Hub for Cloud Solutions & Insights

Advertisement

Master Azure Fundamentals AZ-900: cloud concepts, services, security, pricing, and real-world troubleshooting guide.

Azure Fundamentals AZ-900

Azure Fundamentals AZ-900 Guide: Complete Cloud Mastery in 2026

Learn Cloud Concepts, Azure Services, Security & Real-World Troubleshooting

Azure Fundamentals AZ-900 Guide

Azure Fundamentals AZ-900 Guide is your complete roadmap to understanding cloud computing, Azure architecture, pricing, and security. This guide is designed for beginners and professionals preparing for Azure certification or real-world implementation.

☁️ Cloud Computing Concepts

Cloud computing allows organizations to rent computing resources such as storage, networking, and processing power instead of owning infrastructure.

πŸ’‘ Key Insight: You only pay for what you use β€” no upfront hardware cost.

πŸ”‘ Key Benefits

  • Cost-effective (Pay-as-you-go)
  • Scalable infrastructure
  • Global availability
  • High reliability
FAQ

Q: What is cloud computing?
A: Delivery of IT resources over the internet.

πŸš€ Benefits of Cloud Computing

πŸ’° Cost Efficient

No upfront investment required.

πŸ“ˆ Scalable

Increase or decrease resources anytime.

⚑ Elastic

Auto-adjust resources based on demand.

🌍 Global Reach

Deploy apps worldwide in minutes.

πŸ’Έ CapEx vs OpEx

CapEx OpEx
Upfront cost Pay-as-you-go
Hardware ownership No ownership
Fixed cost Flexible cost
πŸ’‘ Tip: Azure uses OpEx model β†’ Ideal for scaling businesses.

πŸ—οΈ Cloud Deployment Models

  • Public Cloud – Managed by Azure
  • Private Cloud – Managed by organization
  • Hybrid Cloud – Combination of both
⚠️ Note: Hybrid cloud is most widely used in enterprises.

🧩 Service Models (IaaS, PaaS, SaaS)

  • IaaS – Full control (VMs)
  • PaaS – App development platform
  • SaaS – Ready-to-use apps
πŸ’‘ Quick Tip: SaaS = least effort, IaaS = most control

☁️ Introduction to Microsoft Azure

Microsoft Azure provides 100+ services including compute, networking, storage, AI, and DevOps tools.

  • Global infrastructure
  • Enterprise-grade security
  • Highly scalable

πŸ’» Azure CLI Commands

az group create --name MyResourceGroup --location eastus
az vm create --name myVM --resource-group MyResourceGroup --image Win2019Datacenter

🎯 Conclusion

This Azure Fundamentals AZ-900 Guide gives you a strong foundation in cloud computing and Azure services.

Azure Fundamentals AZ-900 Guide (Part 2): Compute, Networking & Architecture Deep Dive

Master Azure Core Services with Real-World Scenarios & Troubleshooting

Azure Compute Networking Guide

πŸ’» Azure Compute Services

Azure Compute provides on-demand processing power for applications, virtual machines, containers, and serverless workloads.

πŸ”‘ Key Compute Services

  • Azure Virtual Machines – Full control over OS
  • Azure App Service – Web app hosting
  • Azure Kubernetes Service (AKS) – Container orchestration
  • Azure Functions – Serverless computing
πŸ’‘ Insight: Use Azure Functions for event-driven workloads to reduce cost.

βš™οΈ Troubleshooting VM Issues

az vm get-instance-view --name myVM --resource-group MyRG
  • Check VM power state
  • Verify network security group (NSG)
  • Check boot diagnostics logs

FAQ

Q: When to use VM vs App Service?
A: VM = full control, App Service = managed platform.

🌐 Azure Networking

Azure networking connects cloud resources securely and efficiently.

Core Networking Services

  • Virtual Network (VNet)
  • Azure Load Balancer
  • Application Gateway
  • VPN Gateway
  • Azure DNS
⚠️ Common Issue: NSG blocking inbound traffic is the #1 VM connectivity problem.

πŸ”§ Troubleshooting Network Issues

az network nsg rule list --resource-group MyRG
  • Check NSG rules
  • Verify subnet configuration
  • Validate public IP

FAQ

Q: What is VNet?
A: Logical network in Azure.

πŸ’Ύ Azure Storage Services

Azure Storage provides scalable, durable, and secure storage solutions.

Storage Types

  • Blob Storage – Unstructured data
  • File Storage – Shared file system
  • Queue Storage – Messaging
  • Table Storage – NoSQL data
πŸ’‘ Tip: Use Blob Storage for images, videos, backups.

πŸ”§ Troubleshooting Storage

az storage account show --name mystorageaccount
  • Check access keys
  • Verify firewall settings
  • Check storage permissions

FAQ

Q: Which storage is cheapest?
A: Blob storage (cool/archive tier).

πŸ—οΈ Azure Architecture & Availability

🌍 Regions

Geographical locations of Azure datacenters.

⚑ Availability Zones

Physically separate datacenters within a region.

πŸ” Region Pairs

Two regions paired for disaster recovery.

πŸ’‘ Best Practice: Deploy apps across multiple zones for high availability.

πŸ“Š SLA (Service Level Agreement)

Service SLA
Single VM 99.9%
Availability Set 99.95%
Availability Zone 99.99%

FAQ

Q: What improves SLA?
A: Using Availability Zones.

πŸ”— Azure Graph API & PowerShell

πŸ“Œ Get Users (Graph API)

GET https://graph.microsoft.com/v1.0/users

πŸ“Œ PowerShell Example

Get-AzVM -ResourceGroupName "MyRG"
πŸ’‘ Tip: Use Graph API for automation & identity management.

🎯 Conclusion

In this section you explored Azure Compute, Networking, Storage, and Architecture with real-world troubleshooting.

Next: Security, IAM, Pricing & Advanced Azure Troubleshooting

Azure Fundamentals AZ-900 Guide (Part 3): Security, Entra ID & IAM Deep Dive

Master Identity, Access Control, Compliance & Real-World Troubleshooting

Azure Security IAM Guide

πŸ” Shared Responsibility Model

Azure security follows a shared responsibility model where both Microsoft and customers are responsible for securing resources.

Cloud Provider Customer
Physical Datacenter User Access
Hardware & Network Data & Applications
Infrastructure Identity & Permissions
πŸ’‘ Insight: Misconfigured identity access is the biggest security risk in Azure.

πŸ‘€ Microsoft Entra ID (Azure AD)

Microsoft Entra ID is the identity and access management service in Azure used for authentication and authorization.

Core Features

  • Single Sign-On (SSO)
  • Multi-Factor Authentication (MFA)
  • Conditional Access
  • Identity Protection
πŸ’‘ Tip: Always enable MFA for privileged accounts.

πŸ”§ PowerShell Example

Connect-AzureAD
Get-AzureADUser

FAQ

Q: What is Entra ID?
A: Identity provider for Azure and Microsoft services.

πŸ”‘ Authentication vs Authorization

  • Authentication – Verifying identity
  • Authorization – Granting access
⚠️ Example: Logging in = Authentication, Accessing resources = Authorization

πŸ›‘οΈ Role-Based Access Control (RBAC)

RBAC allows you to assign permissions based on roles.

Common Roles

  • Owner
  • Contributor
  • Reader

πŸ”§ Assign Role (CLI)

az role assignment create --assignee user@domain.com --role Contributor --scope /subscriptions/{id}
πŸ’‘ Best Practice: Follow Least Privilege Principle.

FAQ

Q: What is RBAC?
A: Access control based on roles.

πŸ” Conditional Access Policies

Conditional Access enforces access decisions based on conditions like location, device, and risk.

Examples

  • Require MFA outside office network
  • Block legacy authentication
  • Allow only compliant devices
⚠️ Common Issue: Users blocked due to incorrect policy configuration.

πŸ”§ Troubleshooting Steps

  • Check Sign-in logs
  • Review applied policies
  • Validate exclusions

πŸ”’ Azure Encryption & Security

  • Data at Rest Encryption
  • Data in Transit Encryption
  • Azure Key Vault
πŸ’‘ Tip: Store secrets securely using Azure Key Vault.

🌐 Network Security

  • Azure Firewall
  • NSG (Network Security Group)
  • DDoS Protection

πŸ”§ Troubleshooting

  • Check NSG inbound rules
  • Validate firewall logs
  • Test connectivity

πŸ“Š Monitoring & Logging

  • Azure Monitor
  • Log Analytics
  • Service Health
πŸ’‘ Tip: Always enable diagnostic logs for troubleshooting.

πŸ”— Graph API Example

GET https://graph.microsoft.com/v1.0/users?$filter=accountEnabled eq true

🎯 Conclusion

In this section, you mastered Azure Security, Entra ID, RBAC, Conditional Access, and real-world IAM troubleshooting.

Next: Pricing, Cost Optimization & Advanced Azure Governance

Azure Fundamentals AZ-900 Guide (Part 4): Pricing, Cost Optimization & Governance

Master Azure Cost Management, Policies, Compliance & Enterprise Best Practices

Azure Pricing Cost Optimization Guide

πŸ’° Azure Pricing Models

Azure follows a consumption-based pricing model where you pay only for the resources you use.

Pricing Options

  • Pay-As-You-Go
  • Reserved Instances
  • Spot Pricing
  • Free Tier
πŸ’‘ Tip: Reserved instances can save up to 70% on VM costs.

Factors Affecting Cost

  • Resource Type
  • Region
  • Usage Duration
  • Bandwidth

FAQ

Q: What increases Azure cost?
A: Always-on resources and high outbound traffic.

πŸ“Š Azure Cost Management Tools

  • Azure Pricing Calculator
  • Total Cost of Ownership (TCO)
  • Azure Cost Management
  • Azure Advisor

πŸ”§ Cost Analysis (CLI)

az consumption usage list
⚠️ Common Issue: Unused VMs running 24/7 increase cost drastically.

πŸ“‰ Cost Optimization Strategies

  • Right-size virtual machines
  • Stop unused resources
  • Use reserved instances
  • Leverage auto-scaling
  • Use Dev/Test subscriptions
πŸ’‘ Pro Tip: Always schedule VM shutdown during non-working hours.

πŸ”§ Auto Shutdown Script

az vm auto-shutdown --resource-group MyRG --name myVM --time 1900

πŸ›οΈ Azure Governance

Governance Tools

  • Azure Policy
  • Azure Blueprints
  • Resource Locks
  • Tags
⚠️ Best Practice: Use tagging for cost tracking and organization.

πŸ”§ Create Policy (CLI)

az policy assignment create --name "LimitLocations"

πŸ“œ Compliance & Trust

  • GDPR
  • ISO Standards
  • NIST
  • Microsoft Trust Center
πŸ’‘ Tip: Use Compliance Manager to track compliance score.

πŸ“‘ Azure Monitoring & Service Health

  • Azure Monitor
  • Service Health Dashboard
  • Alerts & Metrics
πŸ’‘ Tip: Configure alerts to detect downtime early.

🏒 Real-World Enterprise Scenario

A company migrated from on-premises infrastructure to Azure and reduced costs by:

  • Using Reserved Instances
  • Implementing auto-scaling
  • Applying cost governance policies
Result: 40% cost reduction within 6 months.

🎯 Final Conclusion

You have now completed the Azure Fundamentals AZ-900 Guide covering:

  • Cloud Concepts
  • Azure Services
  • Security & IAM
  • Pricing & Governance

This guide prepares you for AZ-900 certification and real-world Azure implementation.

Leave a Reply

Your email address will not be published. Required fields are marked *