
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company uses AWS Organizations to manage multiple AWS accounts for different departments. The management account has an Amazon S3 bucket that contains project reports. The company wants to limit access to this S3 bucket to only users of accounts within the organization in AWS Organizations.
Which solution meets these requirements with the LEAST amount of operational overhead?
A
Add the aws:PrincipalOrgID global condition key with a reference to the organization ID to the S3 bucket policy.
B
Create an organizational unit (OU) for each department. Add the aws:PrincipalOrgPaths global condition key to the S3 bucket policy.
C
Use AWS CloudTrail to monitor the CreateAccount, InviteAccountToOrganization, LeaveOrganization, and RemoveAccountFromOrganization events. Update the S3 bucket policy accordingly.
D
Tag each user that needs access to the S3 bucket. Add the aws:PrincipalTag global condition key to the S3 bucket policy.
Explanation:
The correct answer is A because:
B (aws:PrincipalOrgPaths): While this could work, it requires creating OUs for each department and managing OU paths, which adds operational overhead compared to simply using the organization ID.
C (CloudTrail monitoring): This approach requires continuous monitoring, automation to update policies, and maintenance of event handling logic - significant operational overhead.
D (PrincipalTag): This requires manually tagging each user and maintaining those tags as users change, creating ongoing operational overhead.
This solution ensures that only principals from accounts within your AWS Organization can access the S3 bucket, meeting security requirements with minimal administrative effort.