azureazure-web-app-serviceazure-powershellazure-cliazure-cloud-shell

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


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?


Solution

  • $webApp = Get-AzWebApp
    $hostName = $webApp.HostNames 
    # or get all enabled hostnames using $hostName = $webApp.enabledHostNames 
    Write-Host $hostName
    

    enter image description here

    $webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName 
    $hostName = $webApp.HostNames
    Write-Host $hostName
    

    enter image description here

    $webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName -Name WebAppName
    $hostName = $webApp.HostNames
    Write-Host $hostName
    

    enter image description here