
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 solutions architect has created a new AWS account and must secure AWS account root user access.
Which combination of actions will accomplish this? (Choose two.)
A
Ensure the root user uses a strong password.
B
Enable multi-factor authentication to the root user.
Explanation:
Correct Answers: A and B
A. Ensure the root user uses a strong password - This is a fundamental security best practice for any user account, especially the root user which has unrestricted access to all AWS services and resources.
B. Enable multi-factor authentication to the root user - MFA adds an extra layer of security beyond just a password. Even if the password is compromised, an attacker would still need access to the MFA device to gain entry.
C. Store root user access keys in an encrypted Amazon S3 bucket - This is NOT recommended. Root user access keys should generally not be created or used. If access keys are needed, they should be created for IAM users with appropriate permissions, not for the root user. Storing access keys anywhere, even encrypted, creates unnecessary security risks.
D. Add the root user to a group containing administrative permissions - This is not possible. The root user cannot be added to IAM groups. The root user exists outside of IAM and has inherent, unrestricted permissions that cannot be modified.
E. Apply the required permissions to the root user with an inline policy document - This is not possible. The root user's permissions cannot be modified through IAM policies. The root user has full administrative access by default and cannot have permissions restricted or modified through IAM.
These practices ensure that the most privileged account in your AWS environment is properly secured against unauthorized access.