#Microsoft Azure

Azure excels for enterprises and .NET applications.


#Core Services

ServicePurpose
Virtual MachinesCompute
Blob StorageObject storage
SQL DatabaseManaged SQL
FunctionsServerless
AKSKubernetes
Virtual NetworkNetworking
Active DirectoryIdentity

#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!