Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 843 Bytes

File metadata and controls

36 lines (26 loc) · 843 Bytes
ms.service azure-app-service
ms.topic include
ms.date 10/25/2021
author v1212
ms.author wujia

Get fully qualified domain name

The az containerapp show command returns the fully qualified domain name of a container app.

az containerapp show \
  --resource-group <RESOURCE_GROUP_NAME> \
  --name <CONTAINER_APP_NAME> \
  --query properties.configuration.ingress.fqdn
(Get-AzContainerApp -Name <CONTAINER_APP_NAME> -ResourceGroupName <RESOURCE_GROUP_NAME>).Configuration.IngressFqdn

In this example, replace the placeholders surrounded by <> with your values.

The value returned from this command resembles a domain name like the following example:

myapp.happyhill-70162bb9.canadacentral.azurecontainerapps.io