Multi-Account / Control Tower
If you're using AWS Organizations (e.g., via Control Tower), follow these steps to give NEBU read-only access to all AWS accounts using a single access key.
Step 1 Create a NEBU IAM User in the Management Account
aws iam create-user --user-name nebu-accessaws iam put-user-policy \
--user-name nebu-access \
--policy-name AllowAssumeRoleAndListAccounts \
--policy-document '{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"organizations:ListAccounts",
"sts:AssumeRole"
],
"Resource": "*"
}
]
}'
Step 2 Create the ReadOnly Role in Each Sub-Account
Step 3 Share Access with NEBU
π Notes
Last updated