Agent skill

azure-vms

Manage Azure Virtual Machines and scale sets. Configure availability sets and managed disks. Use when deploying compute resources on Azure.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/azure-vms

Metadata

Additional technical details for this skill

author
devops-skills
version
1.0

SKILL.md

Azure Virtual Machines

Deploy and manage Azure VMs and scale sets.

Create VM

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

Scale Sets

bash
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

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results