Field Note

Listing all resources of a resource group with Azure CLI

microsoft-azure azure-cli resource-group
Posted on Thursday, May the 16th 2024
1 min read

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
friedrichkurz.me

© 2025 Friedrich Kurz

Privacy Policy