Skip to content

Commit 00b7919

Browse files
committed
Fix discrepancy in tab groups vs include file.
1 parent 84b796b commit 00b7919

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/container-apps/managed-identity-image-pull.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ This article describes how to configure your container app to use managed identi
248248
249249
Next, set the following environment variables. Replace the placeholders surrounded by `<>` with your values.
250250
251-
# [Azure CLI](#tab/azure-cli)
251+
# [Bash](#tab/bash)
252252
253253
```azurecli
254254
RESOURCE_GROUP="<YOUR_RESOURCE_GROUP_NAME>"
@@ -274,7 +274,7 @@ $ImageName = '<IMAGE_NAME>'
274274

275275
If you already have a resource group, skip this step. Otherwise, create a resource group.
276276

277-
# [Azure CLI](#tab/azure-cli)
277+
# [Bash](#tab/bash)
278278

279279
```azurecli
280280
az group create \
@@ -294,7 +294,7 @@ New-AzResourceGroup -Location $Location -Name $ResourceGroupName
294294

295295
If the environment doesn't exist, run the following command:
296296

297-
# [Azure CLI](#tab/azure-cli)
297+
# [Bash](#tab/bash)
298298

299299
To create the environment, run the following command:
300300

@@ -351,7 +351,7 @@ Follow this procedure to configure user-assigned managed identity:
351351

352352
### Create a user-assigned managed identity
353353

354-
# [Azure CLI](#tab/azure-cli)
354+
# [Bash](#tab/bash)
355355

356356
Create a user-assigned managed identity. Before you run the following command, replace placeholders surrounded by `<>` with the name of your managed identity.
357357

@@ -379,7 +379,7 @@ New-AzUserAssignedIdentity -Name $IdentityName -ResourceGroupName $ResourceGroup
379379

380380
---
381381

382-
# [Azure CLI](#tab/azure-cli)
382+
# [Bash](#tab/bash)
383383

384384
Get identity's resource ID.
385385

@@ -417,7 +417,7 @@ New-AzRoleAssignment -ObjectId $PrincipalId -Scope $RegistryId -RoleDefinitionNa
417417

418418
Create your container app with your image from the private registry authenticated with the identity.
419419

420-
# [Azure CLI](#tab/azure-cli)
420+
# [Bash](#tab/bash)
421421

422422
Copy the identity's resource ID to paste into the *\<IDENTITY_ID\>* placeholders in the command below. If your image tag isn't `latest`, replace 'latest' with your tag.
423423

@@ -473,7 +473,7 @@ New-AzContainerApp @AppArgs
473473
>[!CAUTION]
474474
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this quickstart exist in the specified resource group, they will also be deleted.
475475
476-
# [Azure CLI](#tab/azure-cli)
476+
# [Bash](#tab/bash)
477477

478478
```azurecli
479479
az group delete --name $RESOURCE_GROUP
@@ -499,7 +499,7 @@ To configure a system-assigned identity, you'll need to:
499499

500500
Create a container with a public image.
501501

502-
# [Azure CLI](#tab/azure-cli)
502+
# [Bash](#tab/bash)
503503

504504
```azurecli
505505
az containerapp create \
@@ -541,7 +541,7 @@ New-AzContainerApp @AppArgs
541541

542542
Update the container app with the image from your private container registry and add a system-assigned identity to authenticate the Azure Container Registry pull. You can also include other settings necessary for your container app, such as ingress, scale and Dapr settings.
543543

544-
# [Azure CLI](#tab/azure-cli)
544+
# [Bash](#tab/bash)
545545

546546
Set the registry server and turn on system-assigned managed identity in the container app.
547547

@@ -594,7 +594,7 @@ Update-AzContainerApp @AppArgs
594594
>[!CAUTION]
595595
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this quickstart exist in the specified resource group, they will also be deleted.
596596
597-
# [Azure CLI](#tab/azure-cli)
597+
# [Bash](#tab/bash)
598598

599599
```azurecli
600600
az group delete --name $RESOURCE_GROUP
@@ -627,7 +627,7 @@ This article describes how to use a Bicep template to configure your container a
627627

628628
If you don't have Bicep installed, you can install it as follows.
629629

630-
# [Azure CLI](#tab/azure-cli)
630+
# [Bash](#tab/bash)
631631

632632
```azurecli
633633
az bicep install
@@ -651,7 +651,7 @@ You must manually install Bicep for any use other than Azure CLI. For more infor
651651

652652
Next, set the following environment variables. Replace placeholders surrounded by `<>` with your values.
653653

654-
# [Azure CLI](#tab/azure-cli)
654+
# [Bash](#tab/bash)
655655

656656
```azurecli
657657
RESOURCE_GROUP="<RESOURCE_GROUP_NAME>"
@@ -811,7 +811,7 @@ output environmentId string = appEnvironment.id
811811

812812
Deploy your container app with the following command.
813813

814-
# [Azure CLI](#tab/azure-cli)
814+
# [Bash](#tab/bash)
815815

816816
```azurecli
817817
az deployment group create \

0 commit comments

Comments
 (0)