Home > Mobile >  Display a list of all Azure Web Apps Custom Domain from Azure Cloud Shell
Display a list of all Azure Web Apps Custom Domain from Azure Cloud Shell

Time:03-31

I am able to get the complete list of appservice URLs like something.azurewebsites.net but nothing found on the web to list custom domains of all azure webapps. How can I get a list of custom domains for all azure webapps from Azure CLI?

CodePudding user response:

  • To get the custom domains for all the web apps in the Subscription
$webApp = Get-AzWebApp
$hostName = $webApp.HostNames 
# or get all enabled hostnames using $hostName = $webApp.enabledHostNames 
Write-Host $hostName

enter image description here

  • To get the custom domains in the selected Resource Group
$webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName 
$hostName = $webApp.HostNames
Write-Host $hostName

enter image description here

  • To get the custom domains for the selected web apps
$webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName -Name WebAppName
$hostName = $webApp.HostNames
Write-Host $hostName

enter image description here

  • Related