skip to Main Content

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.

2

Answers


  1. 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.

    Login or Signup to reply.
  2. to get all the US datacenters, you can use this (after authenticating to azure):

    Get-AzLocation | ? {$_.displayName -match ".* us.*$"} | ft location, displayName
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search