diff --git a/with-dapr/README.md b/with-dapr/README.md index 0c5c9f6..771e4ec 100644 --- a/with-dapr/README.md +++ b/with-dapr/README.md @@ -79,7 +79,7 @@ az containerapp create \ --image 'ghcr.io/azure-samples/container-apps-connect-multiple-apps/node-dapr:main' \ --target-port 3000 \ --ingress 'external' \ - --environment-variables DOTNET_APP_ID=dotnet-app-dapr \ + --env-vars DOTNET_APP_ID=dotnet-app-dapr \ --dapr-app-id node-app-dapr \ --enable-dapr true \ --query configuration.ingress.fqdn diff --git a/with-fqdn/README.md b/with-fqdn/README.md index 4b1b581..0efdc5b 100644 --- a/with-fqdn/README.md +++ b/with-fqdn/README.md @@ -60,7 +60,7 @@ 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 \ + --env-vars DOTNET_FQDN=$DOTNET_FQDN \ --query configuration.ingress.fqdn ```