Skip to content

Commit a6a1c47

Browse files
committed
Fix tab errors.
1 parent 5083e99 commit a6a1c47

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ cd code-to-cloud/src
156156
--sku Basic
157157
```
158158
159-
# [Azure PowerShell](#tab/azure-powershell)
159+
# [Azure PowerShell](#tab/azure-powershell)
160160
161161
```azurepowershell
162162
$acr = New-AzContainerRegistry `
@@ -172,12 +172,14 @@ cd code-to-cloud/src
172172
Use the following command to check if ARM tokens are allowed to access your Azure Container Registry (ACR).
173173
174174
# [Bash](#tab/bash)
175+
175176
```azurecli
176177
az acr config authentication-as-arm show --registry "$ACR_NAME"
177178
```
178179
179180
TODO1 Verify
180181
# [Azure PowerShell](#tab/azure-powershell)
182+
181183
```powershell
182184
$acr.Config.AuthenticationAsArm
183185
```
@@ -195,12 +197,14 @@ TODO1 Verify
195197
If the `status` is `disabled`, allow ARM tokens with the following command.
196198
197199
# [Bash](#tab/bash)
200+
198201
```azurecli
199202
az acr config authentication-as-arm update --registry "$ACR_NAME" --status enabled
200203
```
201204
202205
TODO1 Verify
203206
# [Azure PowerShell](#tab/azure-powershell)
207+
204208
```powershell
205209
$acr.Config.AuthenticationAsArm.Enabled = $true
206210
Set-AzContainerRegistry -ResourceGroupName $acr.ResourceGroupName -Name $acr.Name -Registry $acr

0 commit comments

Comments
 (0)