Files
hacktricks-cloud/src/pentesting-cloud/azure-security/az-services/az-management-groups-subscriptions-and-resource-groups.md
Carlos Polop 4ef00e6b1b translate fix
2025-01-01 23:55:17 +01:00

1.1 KiB

Az - Management Groups, Subscriptions & Resource Groups

{{#include ../../../banners/hacktricks-training.md}}

Management Groups

You can find more info about Management Groups in:

{{#ref}} ../az-basic-information/ {{#endref}}

Enumeration

# List
az account management-group list
# Get details and management groups and subscriptions that are children
az account management-group show --name <name> --expand --recurse

Subscriptions

You can find more info about Subscriptions in:

{{#ref}} ../az-basic-information/ {{#endref}}

Enumeration

# List all subscriptions
az account list --output table
# Get details
az account management-group subscription show --name <management group> --subscription <subscription>

Resource Groups

You can find more info about Resource Groups in:

{{#ref}} ../az-basic-information/ {{#endref}}

Enumeration

# List all resource groups
az group list
# Get resource groups of specific subscription
az group list --subscription "<subscription>" --output table

{{#include ../../../banners/hacktricks-training.md}}