From e036b1e7f192ae11abf6c2364e35584e1063c6fa Mon Sep 17 00:00:00 2001 From: KuetTai Date: Thu, 15 Aug 2024 16:02:10 +0800 Subject: [PATCH] Added instruction for organization level scan --- usecases/accountsWithinOrganization/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 usecases/accountsWithinOrganization/README.md diff --git a/usecases/accountsWithinOrganization/README.md b/usecases/accountsWithinOrganization/README.md new file mode 100644 index 0000000..d5d63f6 --- /dev/null +++ b/usecases/accountsWithinOrganization/README.md @@ -0,0 +1,13 @@ +## Overview + +As users launch more and more workload in AWS, users will eventually move themselves towards [AWS Organizations](https://aws.amazon.com/organizations/) to ease the management of their AWS workloads. For user to execute Service-Screener (SS) in one account is direct, but it can become tedious and repetitive if user has multiple AWS accounts within the same organization. + +## Solutions + +SS today support crossAccounts scanned, which required users to manually setup the crossAccounts.json file by providing the list of AWS accountID, roleNameToBeAssumed, and externalID. To accelerate the crossAccounts.json creation, you can now run ```python3 organizationAccountsInit.py``` and the crossAccounts.json will be generated based on the input given. + +Then, you can execute the following to scan all your accounts within your organization +``` +screener --regions ALL --crossAccount 1 +``` +