#Microsoft Azure
Azure excels for enterprises and .NET applications.
#Core Services
| Service | Purpose |
|---|---|
| Virtual Machines | Compute |
| Blob Storage | Object storage |
| SQL Database | Managed SQL |
| Functions | Serverless |
| AKS | Kubernetes |
| Virtual Network | Networking |
| Active Directory | Identity |
#Azure CLI
bash
1# Install
2curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
3
4# Login
5az login
6
7# VM examples
8az vm list
9az vm create --resource-group myRG --name myVM --image Ubuntu2204
10
11# Storage
12az storage account list
13az storage blob upload --account-name myaccount --container-name mycontainer --file file.txt#Resource Organization
diagram
Management Group
└── Subscription
└── Resource Group
└── Resources (VMs, Storage, etc.)[!TIP] Pro Tip: Use Resource Groups to organize and track costs!