You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -228,26 +229,28 @@ You can view the resources deployed to the managed resource group.
228
229
229
230
# [PowerShell](#tab/azure-powershell)
230
231
231
-
To display the managed resource group's resources, run the following command. The variable `$mrgresources` parses the managed resource group's name from its ID.
232
+
To display the managed resource group's resources, run the following command. You created the `$mrgname` variable when you created the parameters.
To display all the role assignments for the managed resource group.
237
239
238
-
Get-AzResource -ResourceGroupName $mrgresources
240
+
```azurepowershell
241
+
Get-AzRoleAssignment -ResourceGroupName $mrgname
239
242
```
240
243
241
-
To display all the role assignments for the managed resource group.
244
+
The managed application definition you created in the quickstart articles used a group with the Owner role assignment. You can view the group with the following command.
When the resource group that contains the managed application is deleted, the managed resource group is also deleted. In this example, when _applicationGroup_ is deleted the _rg-sampleManagedApplication_ resource group is deleted.
292
-
293
296
If you want to delete the managed application definition, delete the resource groups you created in the quickstart articles.
294
297
295
298
-**Publish application definition**: _packageStorageGroup_ and _appDefinitionGroup_.
0 commit comments