From 802e9a9a99a1aa3081977414c78003dda10abd9e Mon Sep 17 00:00:00 2001 From: Tommy Falgout Date: Tue, 7 Jun 2022 09:14:40 -0500 Subject: [PATCH] Updated to reflect latest changes to CLI FYI, the `query` at the end is unnecessary as it prints out the result ``` Container app created. Access your app at https://node-app.kindstone-61e8d443.canadacentral.azurecontainerapps.io/ "node-app.kindstone-61e8d443.canadacentral.azurecontainerapps.io" ``` --- with-fqdn/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/with-fqdn/README.md b/with-fqdn/README.md index 4b1b581..85b3340 100644 --- a/with-fqdn/README.md +++ b/with-fqdn/README.md @@ -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 \ @@ -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 ```