Today I Learned (May 16, 2024)

How to list all resources in a resource group with Azure CLI

One of the nice things about Microsoft Azure is that it enforces the use of logical groupings of resources (Resource Groups). This makes it easy to list all resources for a specific project or environment. With Azure CLI you may list all resources belonging to a resource group the-resource-group for a subscription the-subscription with this command:

az resource list --resource-group <the-resource-group> --subscription <the-subscription> --output table

:link: cf. (Youtube.com) Talking Tech with Techie Lass // List all resources in a resource group using an Azure CLI Command