AWS - Organizations Enum

Support HackTricks

Grundlegende Informationen

AWS Organizations erleichtert die Erstellung neuer AWS-Konten, ohne zusätzliche Kosten zu verursachen. Ressourcen können mühelos zugewiesen, Konten effizient gruppiert und Governance-Richtlinien auf einzelne Konten oder Gruppen angewendet werden, was das Management und die Kontrolle innerhalb der Organisation verbessert.

Wichtige Punkte:

  • Erstellung neuer Konten: AWS Organizations ermöglicht die Erstellung neuer AWS-Konten ohne zusätzliche Gebühren.

  • Ressourcenzuweisung: Es vereinfacht den Prozess der Zuweisung von Ressourcen über die Konten hinweg.

  • Kontengruppierung: Konten können zusammen gruppiert werden, was das Management effizienter macht.

  • Governance-Richtlinien: Richtlinien können auf Konten oder Gruppen von Konten angewendet werden, um Compliance und Governance in der Organisation sicherzustellen.

Weitere Informationen finden Sie unter:

AWS - Basic Information
# Get Org
aws organizations describe-organization
aws organizations list-roots

# Get OUs, from root and from other OUs
aws organizations list-organizational-units-for-parent --parent-id r-lalala
aws organizations list-organizational-units-for-parent --parent-id ou-n8s9-8nzv3a5y

# Get accounts
## List all the accounts without caring about the parent
aws organizations list-accounts
## Accounts from a parent
aws organizations list-accounts-for-parent --parent-id r-lalala
aws organizations list-accounts-for-parent --parent-id ou-n8s9-8nzv3a5y

# Get basic account info
## You need the permission iam:GetAccountSummary
aws iam get-account-summary

Referenzen

  • https://aws.amazon.com/organizations/

Unterstütze HackTricks

Last updated