Home > Blockchain >  How to get azure tenant location and subdomain name
How to get azure tenant location and subdomain name

Time:08-05

I have logged in to my azure dev account and can see the tenant location as,

United States datacenters

How can I get the code of this location? for example uksouth, uswest2.

Also how can I get the subdomain name of my tenant.

Please advise.

CodePudding user response:

You can find some information in Azure Portal -> Azure Active Directory.

On Overview you get the primary domain, and in Properties you get the Country and Data Location.

You can find in this page the location of a specific AAD service depending on your configured country.

CodePudding user response:

to get all the US datacenters, you can use this (after authenticating to azure):

Get-AzLocation | ? {$_.displayName -match ".* us.*$"} | ft location, displayName
  • Related