availability-zones
VM AZ design — zonal vs zone-redundant, latency, AZ-aware LB, SLA
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
VM AZ design — zonal vs zone-redundant, latency, AZ-aware LB, SLA
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Availability Sets — FDs, UDs, when AS still applies
Capacity Reservation Groups (CRG) — guarantee capacity for critical/DR VMs
Azure Dedicated Hosts — host groups, isolation, BYOL, maintenance control
Proximity Placement Groups — co-locate for ultra-low latency
Azure Scheduled Events via IMDS — react to host maintenance
Compose Azure VM SLAs — single-VM, AS, AZ, multi-region
| name | availability-zones |
| description | VM AZ design — zonal vs zone-redundant, latency, AZ-aware LB, SLA |
az vm create -g <rg> -n vm-app-z1 --image Ubuntu2204 \
--zone 1 --size Standard_D2s_v5 ...
resource vm 'Microsoft.Compute/virtualMachines@2024-03-01' = {
name: 'vm-app-z1'
location: location
zones: [ '1' ]
properties: { /* ... */ }
}
Validation-first: verify every Azure fact against the Microsoft Learn MCP server (cite the Learn URL); Learn overrides built-in knowledge. If no Learn MCP server is configured, flag the answer ⚠️ unverified and mark specs as indicative. Analysis only — verify against Microsoft documentation before applying.