Skip to content

Commit 15f5831

Browse files
docs: env var for acr name option 2
1 parent 9d24dd6 commit 15f5831

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/aca/10-aca-iac-bicep/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,11 @@ Next, we will prepare container images for the three container apps and update t
369369
1. Create an Azure Container Registry (ACR) inside the newly created Resource Group:
370370

371371
```Powershell
372+
$CONTAINER_REGISTRY_NAME="<your ACR name>"
373+
372374
az acr create `
373375
--resource-group $RESOURCE_GROUP `
374-
--name <your ACR name>`
376+
--name $CONTAINER_REGISTRY_NAME `
375377
--sku Basic
376378
```
377379
2. Import the images to your private ACR as shown below:

0 commit comments

Comments
 (0)