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?
$webApp = Get-AzWebApp
$hostName = $webApp.HostNames
# or get all enabled hostnames using $hostName = $webApp.enabledHostNames
Write-Host $hostName
$webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName
$hostName = $webApp.HostNames
Write-Host $hostName
$webApp = Get-AzWebApp -ResourceGroupName YourResourceGroupName -Name WebAppName
$hostName = $webApp.HostNames
Write-Host $hostName