Azure Web Apps
Find enabled hostnames
(Get-AzWebApp -ResourceGroupName "RESOURCE_GROUP_NAME" -Name "WEB_APP_NAME").EnabledHostNamesAny time an app is created, App Service creates a Kudu companion app for it that allows us to manage the app instance, including getting terminal access. The location of this app can vary depending on the configuration.
PROTIP: The Website Contributor role must be assigned first in order to access the Kudu console terminal.
Last updated