Files
hacktricks-cloud/src/pentesting-cloud/azure-security/az-services/az-management-groups-subscriptions-and-resource-groups.md
T

1.2 KiB

Az - 管理グループ、サブスクリプション & リソースグループ

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

管理グループ

管理グループに関する詳細情報は以下で確認できます:

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

列挙

# 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

サブスクリプション

サブスクリプションに関する詳細情報は次の場所で確認できます:

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

列挙

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

リソースグループ

リソースグループに関する詳細情報は、以下で確認できます:

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

列挙

# 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}}