Skip to content

Commit f53154a

Browse files
authored
(AzureCXP) RG is required parameter
resolves MicrosoftDocs/azure-docs#106535
1 parent df08e7b commit f53154a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/logic-apps/quickstart-create-deploy-azure-resource-manager-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ To view the logic app workflow, you can use the Azure portal, run a script that
239239
```azurecli-interactive
240240
echo "Enter your logic app name:" &&
241241
read logicAppName &&
242-
az logic workflow show --name $logicAppName &&
242+
az logic workflow show --resource-group $resourceGroupName --name $logicAppName &&
243243
echo "Press [ENTER] to continue ..."
244244
```
245245

@@ -249,7 +249,7 @@ For more information, see [Azure CLI: az logic workflow show](/cli/azure/logic/w
249249

250250
```azurepowershell-interactive
251251
$logicAppName = Read-Host -Prompt "Enter your logic app name"
252-
Get-AzLogicApp -Name $logicAppName
252+
Get-AzLogicApp -ResourceGroupName $resourceGroupName -Name $logicAppName
253253
Write-Host "Press [ENTER] to continue..."
254254
```
255255

0 commit comments

Comments
 (0)