Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Get Azure VM and VM Scale Set recommendations based on workload, performance, and budget needs.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
workflows/vm-recommender/references/web-fetch-policy.md
1# web_fetch policy23Steps 2 and 3 of the recommender rely on `web_fetch` against `learn.microsoft.com` to verify that a recommendation reflects current capabilities (especially VMSS features, family availability, and Spot eligibility).45## When `web_fetch` succeeds67Use the live documentation as the source of truth. Cite the URL in the recommendation so the user can verify.89## When `web_fetch` fails (timeout, 404, blocked, offline)1011Proceed using the reference files in `../../references/` — but **always** include this warning in the recommendation:1213> ⚠ Unable to verify against latest Azure documentation. Recommendation is based on reference material that may not reflect recent updates (e.g., new VM families, Spot eligibility changes, regional rollouts).1415Do not block the recommendation on `web_fetch` failure. The user is better served by an annotated recommendation than by no recommendation.1617## What to fetch (Step 2 — VMSS)1819```20https://learn.microsoft.com/azure/virtual-machine-scale-sets/overview21https://learn.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-autoscale-overview22```2324## What to fetch (Step 3 — VM family)2526```27https://learn.microsoft.com/azure/virtual-machines/sizes/<family-category>/<series-name>28```2930Examples:31- B-series: `https://learn.microsoft.com/azure/virtual-machines/sizes/general-purpose/b-family`32- D-series: `https://learn.microsoft.com/azure/virtual-machines/sizes/general-purpose/ddsv5-series`33- GPU: `https://learn.microsoft.com/azure/virtual-machines/sizes/gpu-accelerated/nc-family`3435For Spot, also: `https://learn.microsoft.com/azure/virtual-machine-scale-sets/use-spot`.36