Skip to content

Instantly share code, notes, and snippets.

@asears
Created April 26, 2020 11:15
Show Gist options
  • Select an option

  • Save asears/1256e6c6514cf3466f957565776b8b2f to your computer and use it in GitHub Desktop.

Select an option

Save asears/1256e6c6514cf3466f957565776b8b2f to your computer and use it in GitHub Desktop.
Get list of offers using Azure Cli / API
cat pubs.txt | tr -d '\r' | while read line; do az vm image list-offers --location eastus2 --publisher ${line} --query '[].id' --output table; done > offers.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment