Skip to content

Commit 6d3d2e9

Browse files
authored
Merge pull request #294012 from craigshoemaker/aca/jason/powershell
[Container Apps] [294521] Normalize tabs and code fences.
2 parents 32031cb + 98a4e30 commit 6d3d2e9

36 files changed

+376
-402
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.custom: devx-track-azurecli
88
ms.topic: conceptual
9-
ms.date: 12/05/2024
9+
ms.date: 02/03/2025
1010
ms.author: cshoe
1111
---
1212

@@ -33,7 +33,7 @@ Next, add the required Azure CLI extensions.
3333
> [!WARNING]
3434
> The following command installs a custom Container Apps extension that can't be used with the public cloud service. You need to uninstall the extension if you switch back to the Azure public cloud.
3535
36-
```azurecli-interactive
36+
```azurecli
3737
az extension add --upgrade --yes --name customlocation
3838
az extension add --name containerapp --upgrade --yes
3939
```
@@ -42,7 +42,7 @@ az extension add --name containerapp --upgrade --yes
4242

4343
Create a resource group for the services created in this tutorial.
4444

45-
```azurecli-interactive
45+
```azurecli
4646
GROUP_NAME="my-container-apps-resource-group"
4747
az group create --name $GROUP_NAME --location eastus
4848
```
@@ -51,17 +51,17 @@ az group create --name $GROUP_NAME --location eastus
5151

5252
Get the following location group, name, and ID from your cluster administrator. See [Create a custom location](azure-arc-enable-cluster.md) for details.
5353

54-
```azurecli-interactive
54+
```azurecli
5555
CUSTOM_LOCATION_GROUP="<RESOURCE_GROUP_CONTAINING_CUSTOM_LOCATION>"
5656
```
5757

58-
```azurecli-interactive
58+
```azurecli
5959
CUSTOM_LOCATION_NAME="<NAME_OF_CUSTOM_LOCATION>"
6060
```
6161

6262
Get the custom location ID.
6363

64-
```azurecli-interactive
64+
```azurecli
6565
CUSTOM_LOCATION_ID=$(az customlocation show \
6666
--resource-group $CUSTOM_LOCATION_GROUP \
6767
--name $CUSTOM_LOCATION_NAME \
@@ -75,7 +75,7 @@ Now that you have the custom location ID, you can query for the connected enviro
7575

7676
A connected environment is largely the same as a standard Container Apps environment, but the underlying Arc-enabled Kubernetes cluster controls the network restrictions.
7777

78-
```azure-interactive
78+
```azurecli
7979
CONTAINER_APP_NAME="my-container-app"
8080
CONNECTED_ENVIRONMENT_ID=$(az containerapp connected-env list --custom-location $CUSTOM_LOCATION_ID -o tsv --query '[].id')
8181
```
@@ -84,7 +84,7 @@ CONNECTED_ENVIRONMENT_ID=$(az containerapp connected-env list --custom-location
8484

8585
The following example creates a Node.js app.
8686

87-
```azurecli-interactive
87+
```azurecli
8888
az containerapp create \
8989
--resource-group $GROUP_NAME \
9090
--name $CONTAINER_APP_NAME \

0 commit comments

Comments
 (0)