An enterprise is designing a secure multi-account AWS environment using AWS Organizations to comply with regulatory standards. The architecture contains a management account and multiple member accounts grouped into OUs, including a Production OU and a Development OU.
The security team has specified the following requirements:
1. Centralize administrative access management by integrating with the enterprise's corporate Active Directory.
2. Prevent administrators in any member account from deleting or modifying a specific compliance auditing IAM role named SecurityAuditRole.
3. Restrict member accounts under the Development OU to only run Amazon EC2 and Amazon S3 workloads, while ensuring that the management account is never blocked from performing administrative recovery actions.
Which combination of actions will meet these requirements with the least operational overhead?
- ACreate individual IAM users in the management account for all corporate directory users and configure cross-account roles in each member account. Apply local IAM policies in each member account that prevent administrators from deleting or modifying the SecurityAuditRole. Create an SCP that denies access to all services except Amazon EC2 and Amazon S3, and attach it to the Development OU.
- BEnable AWS IAM Identity Center and configure Active Directory synchronization. Create an SCP that denies the deletion or modification of the SecurityAuditRole and attach it to the organization root. In the SCP's condition block, explicitly exclude the root user of the management account from the deny statement, and use the management account's root user credentials for daily administrative tasks to bypass the SCP limits.
- Enable AWS IAM Identity Center and configure Active Directory synchronization for user federation. Create an SCP that denies the deletion or modification of the SecurityAuditRole and attach it to the organization root. Create a second SCP that denies access to all services except Amazon EC2 and Amazon S3, and attach it to the Development OU.Cevap
- DCreate individual IAM users in each member account and synchronize them with the corporate Active Directory using an identity agent. Create an SCP that denies the deletion or modification of the SecurityAuditRole and attach it to the organization root. To bypass the SCP restrictions in the Development OU, instruct developers to log in using the member account root user credentials, which are exempt from SCP policies.