azure-compute

Installation
SKILL.md

Azure Compute Skills

Virtual Machines

Creating VMs

# Linux VM with SSH key
az vm create \
  --resource-group myRG \
  --name myLinuxVM \
  --image Ubuntu2204 \
  --size Standard_B2s \
  --admin-username azureuser \
  --ssh-key-values ~/.ssh/id_rsa.pub \
  --vnet-name myVNet \
  --subnet WebSubnet \
  --public-ip-sku Standard \
  --no-wait
Installs
2
GitHub Stars
1
First Seen
May 12, 2026
azure-compute — tomz/agent-skills