azure-vms

SKILL.md

Azure Virtual Machines

Deploy and manage Azure VMs and scale sets.

Create VM

az vm create \
  --resource-group mygroup \
  --name myvm \
  --image Ubuntu2204 \
  --size Standard_B2s \
  --admin-username azureuser \
  --generate-ssh-keys \
  --nsg-rule SSH

Scale Sets

az vmss create \
  --resource-group mygroup \
  --name myvmss \
  --image Ubuntu2204 \
  --instance-count 2 \
  --vm-sku Standard_B2s \
  --upgrade-policy-mode automatic

Best Practices

  • Use managed disks
  • Implement availability zones
  • Use scale sets for auto-scaling
  • Enable Azure Backup
  • Use spot instances for cost savings
Weekly Installs
11
GitHub Stars
13
First Seen
Feb 4, 2026
Installed on
opencode11
codex11
claude-code10
github-copilot10
kimi-cli10
gemini-cli10