Skip to content

Commit 1d14f43

Browse files
committed
[ACA] Fix ingress parameter to az containerapp create
1 parent 03fe163 commit 1d14f43

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/container-apps/azure-arc-create-container-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The following example creates a Node.js app.
9393
--environment-type connected \
9494
--image mcr.microsoft.com/k8se/quickstart:latest \
9595
--target-port 80 \
96-
--ingress 'external'
96+
--ingress external
9797
9898
az containerapp browse --resource-group $myResourceGroup --name $myContainerApp
9999
```

articles/container-apps/communicate-between-microservices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ az containerapp create \
233233
--image $ACR_NAME.azurecr.io/albumapp-ui \
234234
--target-port 3000 \
235235
--env-vars API_BASE_URL=https://$API_BASE_URL \
236-
--ingress 'external' \
236+
--ingress external \
237237
--registry-server $ACR_NAME.azurecr.io \
238238
--query properties.configuration.ingress.fqdn
239239
```

articles/container-apps/tutorial-code-to-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ az containerapp create \
317317
--environment $ENVIRONMENT \
318318
--image $ACR_NAME.azurecr.io/$API_NAME \
319319
--target-port 8080 \
320-
--ingress 'external' \
320+
--ingress external \
321321
--registry-server $ACR_NAME.azurecr.io \
322322
--query properties.configuration.ingress.fqdn
323323
```

articles/container-apps/tutorial-deploy-first-app-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ az containerapp create \
4848
--environment $CONTAINERAPPS_ENVIRONMENT \
4949
--image mcr.microsoft.com/k8se/quickstart:latest \
5050
--target-port 80 \
51-
--ingress 'external' \
51+
--ingress external \
5252
--query properties.configuration.ingress.fqdn
5353
```
5454

0 commit comments

Comments
 (0)