Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions with-fqdn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ az containerapp create \
DOTNET_FQDN=$(az containerapp show \
--resource-group 'sample-rg' \
--name dotnet-app \
--query configuration.ingress.fqdn -o tsv)
--query properties.configuration.ingress.fqdn -o tsv)

# Deploy the container-1-node node-app
az containerapp create \
Expand All @@ -60,7 +60,6 @@ az containerapp create \
--image 'ghcr.io/azure-samples/container-apps-connect-multiple-apps/node:main' \
--target-port 3000 \
--ingress 'external' \
--environment-variables DOTNET_FQDN=$DOTNET_FQDN \
--query configuration.ingress.fqdn
--env-vars DOTNET_FQDN=$DOTNET_FQDN
```