Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications

Categories

🎓 Certifications
🤖 Artificial Intelligence
☁️ Cloud and Infrastructure
💾 Data and Databases
💼 Professional Skills
🎯 Programming and Development
🔒 Security and Networking
📚 Specialized Topics
CheatGrid
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications
LVLEVEL 0
0/5 XP
GitHub
© 2026 CheatGrid™. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Azure Cloud Computing Core Cheat Sheet

Azure Cloud Computing Core Cheat Sheet

Back to Cloud Computing
Updated 2026-04-20
Next Topic: Azure Cloud Services Cheat Sheet

Microsoft Azure is a comprehensive cloud computing platform offering infrastructure-as-a-service (IaaS), platform-as-a-service (PaaS), and software-as-a-service (SaaS) solutions across 70+ global regions. Azure enables organizations to build, deploy, and manage applications using Microsoft-managed data centers while providing pay-as-you-go pricing and automated scaling. A key mental model: Azure organizes resources hierarchically through management groups → subscriptions → resource groups → resources, with each level inheriting policies and access controls from above—understanding this hierarchy is essential for effective governance and cost management.

What This Cheat Sheet Covers

This topic spans 20 focused tables and 124 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Core Compute ServicesTable 2: Storage ServicesTable 3: Networking ServicesTable 4: Database ServicesTable 5: Identity and Access ManagementTable 6: Resource OrganizationTable 7: Regions and AvailabilityTable 8: Monitoring and ManagementTable 9: Security ServicesTable 10: High Availability and Disaster RecoveryTable 11: Infrastructure as CodeTable 12: Cost ManagementTable 13: Scaling and PerformanceTable 14: Messaging and Event ServicesTable 15: Integration and WorkflowTable 16: AI and Machine LearningTable 17: Hybrid and Multi-CloudTable 18: Connectivity OptionsTable 19: Service Limits and QuotasTable 20: Development and DevOps

Table 1: Core Compute Services

Compute is where your code actually runs, and Azure spreads it across a spectrum — from full-control virtual machines down to event-driven functions where you never touch a server. The right pick comes down to how much of the stack you want to own versus hand off: VMs and Scale Sets keep you close to the OS, App Service and Container Apps trade that control for a managed platform, and Functions or Container Instances let you spin up just the work and pay only while it runs.

ServiceExampleDescription
Virtual Machines
az vm create --resource-group myRG --name myVM --image Ubuntu2204
• On-demand Windows or Linux VMs with full OS control
• supports multiple series (D, E, F) optimized for different workloads
Azure App Service
az webapp create --resource-group myRG --plan myPlan --name myApp --runtime "NODE|18-lts"
• Fully managed PaaS for hosting web apps, REST APIs, and mobile backends
• supports .NET, Java, Node.js, Python, PHP
Azure Functions
func init myFunctionApp --worker-runtime python
func new --name HttpTrigger --template "HTTP trigger"
• Event-driven serverless compute with automatic scaling
• pay only for execution time
• supports multiple triggers
Azure Kubernetes Service
az aks create --resource-group myRG --name myAKS --node-count 3
• Managed Kubernetes for container orchestration
• handles control plane, automated upgrades, and scaling
Azure Container Apps
az containerapp create --name myapp --resource-group myRG --environment myenv --image myacr.io/myapp:v1
• Serverless containers with built-in load balancing, auto-scaling, and managed Kubernetes
• no cluster management required

More in Cloud Computing

  • AWS Step Functions Cheat Sheet
  • Azure Cloud Services Cheat Sheet
  • AI Agent Mesh and Agentic Cloud Infrastructure Cheat Sheet
  • Cloud Computing Basics Cheat Sheet
  • Cloud Pricing Models and Commitments Cheat Sheet
  • Google Cloud Platform - GCP Core Cheat Sheet
View all 57 topics in Cloud Computing