How to: know the actual location of your Dataverse environment
When you create a new Dataverse environment you can peek the Region where your environment will be located. Unfortunately, these "environment region" definition does not match the list of available regions where Azure resources can be created: The Dataverse region list can actually be seen as a sort of aggregation of Azure regions: Screenshot obtained leveraging Get-AdminPowerAppEnvironmentLocations command of PowerShell module Microsoft.PowerApps.Administration.PowerShell, with the following script: # Install and import the required module if not already installed if (-not (Get-Module -ListAvailable -Name Microsoft.PowerApps.Administration.PowerShell)) { Install-Module -Name Microsoft.PowerApps.Administration.PowerShell -Force -Scope CurrentUser } Import-Module Microsoft.PowerApps.Administration.PowerShell # Get all environments in the tenant Get-AdminPowerAppEnvironmentLocations

When you create a new Dataverse environment you can peek the Region where your environment will be located.
Unfortunately, these "environment region" definition does not match the list of available regions where Azure resources can be created:
The Dataverse region list can actually be seen as a sort of aggregation of Azure regions:
Screenshot obtained leveraging Get-AdminPowerAppEnvironmentLocations
command of PowerShell module Microsoft.PowerApps.Administration.PowerShell
, with the following script:
# Install and import the required module if not already installed
if (-not (Get-Module -ListAvailable -Name Microsoft.PowerApps.Administration.PowerShell)) {
Install-Module -Name Microsoft.PowerApps.Administration.PowerShell -Force -Scope CurrentUser
}
Import-Module Microsoft.PowerApps.Administration.PowerShell
# Get all environments in the tenant
Get-AdminPowerAppEnvironmentLocations