A list of all the region names and locations for Azure
You can recreate the list anytime using this command:
az account list-locations -o table| [ | |
| { | |
| "displayName": "East US", | |
| "id": "/subscriptions/41160c59-742a-4bb6-9a57-32c3cf05a343/locations/eastus", | |
| "metadata": { | |
| "geographyGroup": "US", | |
| "latitude": "37.3719", | |
| "longitude": "-79.8164", | |
| "pairedRegion": [ | |
| { |
| #requires -Version 2.0 -Modules MSOnline | |
| <# | |
| PowerShell Core (PWSH) is not supported, at least not yet | |
| # Easy way to install the MSOL Module, requires PowerShell 5 or PSGet | |
| Install-Module -Name MSOnline | |
| I still use the old (MSOL) module, cause it works best at the moment. | |
| I might convert more and more to the newer modules |
| #!/bin/sh | |
| set -eu | |
| # Docker | |
| sudo apt remove --yes docker docker-engine docker.io \ | |
| && sudo apt update \ | |
| && sudo apt --yes --no-install-recommends install \ | |
| apt-transport-https \ | |
| ca-certificates \ |