5 lines
163 B
Bash
5 lines
163 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Get available Azure regions for this subscription
|
||
|
|
|
||
|
|
az account list-locations --query "[?metadata.regionType=='Physical'].name" -o tsv | sort
|