Skip to content

Commit 4c32215

Browse files
committed
Try to resolve tab issue.
1 parent 30c2f67 commit 4c32215

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

articles/container-apps/vnet-custom-internal.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ An environment in Azure Container Apps creates a secure boundary around a group
6969

7070
Register the `Microsoft.ContainerService` provider.
7171

72-
# [Azure CLI](#tab/azure-cli)
72+
# [Bash](#tab/bash)
7373

7474
```azurecli-interactive
7575
az provider register --namespace Microsoft.ContainerService
@@ -85,7 +85,7 @@ Register-AzResourceProvider -ProviderNamespace Microsoft.ContainerService
8585

8686
Declare a variable to hold the VNET name.
8787

88-
# [Azure CLI](#tab/azure-cli)
88+
# [Bash](#tab/bash)
8989

9090
```azurecli-interactive
9191
VNET_NAME="my-custom-vnet"
@@ -104,7 +104,7 @@ Now create an instance of the virtual network to associate with the Container Ap
104104
> [!NOTE]
105105
> Network subnet address prefix requires a minimum CIDR range of `/23` for use with Container Apps when using the Consumption only environment. When using the Workload Profiles environment, a `/27` or larger is required. To learn more about subnet sizing, see the [networking environment overview](./networking.md#subnet).
106106
107-
# [Azure CLI](#tab/azure-cli)
107+
# [Bash](#tab/bash)
108108

109109
```azurecli-interactive
110110
az network vnet create \
@@ -147,7 +147,7 @@ $vnet = New-AzVirtualNetwork @VnetArgs
147147

148148
With the VNET established, you can now query for the infrastructure subnet ID.
149149

150-
# [Azure CLI](#tab/azure-cli)
150+
# [Bash](#tab/bash)
151151

152152
```azurecli-interactive
153153
INFRASTRUCTURE_SUBNET=`az network vnet subnet show --resource-group ${RESOURCE_GROUP} --vnet-name $VNET_NAME --name infrastructure-subnet --query "id" -o tsv | tr -d '[:space:]'`
@@ -163,7 +163,7 @@ $InfrastructureSubnet = (Get-AzVirtualNetworkSubnetConfig -Name $SubnetArgs.Name
163163

164164
Finally, create the Container Apps environment with the VNET and subnet.
165165

166-
# [Azure CLI](#tab/azure-cli)
166+
# [Bash](#tab/bash)
167167

168168
```azurecli-interactive
169169
az containerapp env create \
@@ -247,7 +247,7 @@ If you want to deploy your container app with a private DNS, run the following c
247247

248248
First, extract identifiable information from the environment.
249249

250-
# [Azure CLI](#tab/azure-cli)
250+
# [Bash](#tab/bash)
251251

252252
```azurecli-interactive
253253
ENVIRONMENT_DEFAULT_DOMAIN=`az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties.defaultDomain --out json | tr -d '"'`
@@ -275,7 +275,7 @@ $EnvironmentStaticIp = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvi
275275

276276
Next, set up the private DNS.
277277

278-
# [Azure CLI](#tab/azure-cli)
278+
# [Bash](#tab/bash)
279279

280280
```azurecli-interactive
281281
az network private-dns zone create \
@@ -332,7 +332,7 @@ There are three optional networking parameters you can choose to define when cal
332332

333333
You must either provide values for all three of these properties, or none of them. If they aren’t provided, the values are generated for you.
334334

335-
# [Azure CLI](#tab/azure-cli)
335+
# [Bash](#tab/bash)
336336

337337
| Parameter | Description |
338338
|---|---|
@@ -369,7 +369,7 @@ If you're not going to continue to use this application, you can delete the Azur
369369
>[!CAUTION]
370370
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they will also be deleted.
371371
372-
# [Azure CLI](#tab/azure-cli)
372+
# [Bash](#tab/bash)
373373

374374
```azurecli-interactive
375375
az group delete --name $RESOURCE_GROUP

articles/container-apps/vnet-custom.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ An environment in Azure Container Apps creates a secure boundary around a group
6969

7070
Register the `Microsoft.ContainerService` provider.
7171

72-
# [Azure CLI](#tab/azure-cli)
72+
# [Bash](#tab/bash)
7373

7474
```azurecli-interactive
7575
az provider register --namespace Microsoft.ContainerService
@@ -85,9 +85,9 @@ Register-AzResourceProvider -ProviderNamespace Microsoft.ContainerService
8585

8686
Declare a variable to hold the VNET name.
8787

88-
# [Azure CLI](#tab/azure-cli)
88+
# [Bash](#tab/bash)
8989

90-
```bash
90+
```azurecli-interactive
9191
VNET_NAME="my-custom-vnet"
9292
```
9393

@@ -104,7 +104,7 @@ Now create an Azure virtual network to associate with the Container Apps environ
104104
> [!NOTE]
105105
> Network subnet address prefix requires a minimum CIDR range of `/23` for use with Container Apps when using the Consumption only Architecture. When using the Workload Profiles Architecture, a `/27` or larger is required. To learn more about subnet sizing, see the [networking architecture overview](./networking.md#subnet).
106106
107-
# [Azure CLI](#tab/azure-cli)
107+
# [Bash](#tab/bash)
108108

109109
```azurecli-interactive
110110
az network vnet create \
@@ -147,7 +147,7 @@ $vnet = New-AzVirtualNetwork @VnetArgs
147147

148148
With the virtual network created, you can retrieve the ID for the infrastructure subnet.
149149

150-
# [Azure CLI](#tab/azure-cli)
150+
# [Bash](#tab/bash)
151151

152152
```azurecli-interactive
153153
INFRASTRUCTURE_SUBNET=`az network vnet subnet show --resource-group ${RESOURCE_GROUP} --vnet-name $VNET_NAME --name infrastructure-subnet --query "id" -o tsv | tr -d '[:space:]'`
@@ -163,7 +163,7 @@ $InfrastructureSubnet=(Get-AzVirtualNetworkSubnetConfig -Name $SubnetArgs.Name -
163163

164164
Finally, create the Container Apps environment using the custom VNET deployed in the preceding steps.
165165

166-
# [Azure CLI](#tab/azure-cli)
166+
# [Bash](#tab/bash)
167167

168168
```azurecli-interactive
169169
az containerapp env create \
@@ -242,7 +242,7 @@ If you want to deploy your container app with a private DNS, run the following c
242242

243243
First, extract identifiable information from the environment.
244244

245-
# [Azure CLI](#tab/azure-cli)
245+
# [Bash](#tab/bash)
246246

247247
```azurecli-interactive
248248
ENVIRONMENT_DEFAULT_DOMAIN=`az containerapp env show --name ${CONTAINERAPPS_ENVIRONMENT} --resource-group ${RESOURCE_GROUP} --query properties.defaultDomain --out json | tr -d '"'`
@@ -271,7 +271,7 @@ $EnvironmentStaticIp = (Get-AzContainerAppManagedEnv -EnvName $ContainerAppsEnvi
271271

272272
Next, set up the private DNS.
273273

274-
# [Azure CLI](#tab/azure-cli)
274+
# [Bash](#tab/bash)
275275

276276
```azurecli-interactive
277277
az network private-dns zone create \
@@ -328,7 +328,7 @@ There are three optional networking parameters you can choose to define when cal
328328

329329
You must either provide values for all three of these properties, or none of them. If they aren’t provided, the values are generated for you.
330330

331-
# [Azure CLI](#tab/azure-cli)
331+
# [Bash](#tab/bash)
332332

333333
| Parameter | Description |
334334
|---|---|
@@ -365,7 +365,7 @@ If you're not going to continue to use this application, you can remove the **my
365365
>[!CAUTION]
366366
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they will also be deleted.
367367
368-
# [Azure CLI](#tab/azure-cli)
368+
# [Bash](#tab/bash)
369369

370370
```azurecli-interactive
371371
az group delete --name $RESOURCE_GROUP

0 commit comments

Comments
 (0)