A global financial services enterprise uses AWS Organizations to manage its multi-account environment. The security team needs to implement governance controls with the following requirements:
- Security audit teams require read-only access across all member accounts without managing local IAM credentials.
- No member account administrator can disable CloudTrail or delete the S3 buckets containing audit logs.
- Developers in sandbox accounts must have administrative privileges but must be prevented from launching GPU-based instance types (such as `p*` or `g*`) or creating resources outside of approved regions (`us-east-1` and `us-west-2`).
- Day-to-day administration of the AWS Organization must be delegated to administrators using temporary credentials, preventing the use of the management account's root credentials for routine tasks.
Which combination of actions should the Solutions Architect take to meet these requirements? (Select TWO.)
- Configure AWS IAM Identity Center integrated with the enterprise identity provider (IdP). Create a read-only permission set and assign it to the security audit team's group across the organization. Create administrative permission sets for day-to-day organization management in the management account.Cevap
- Attach a Service Control Policy (SCP) at the organization root that denies log deletion and CloudTrail modification API calls. Attach a separate SCP to the Sandbox Organizational Unit (OU) that denies the `ec2:RunInstances` action for non-approved regions and GPU instance types.Cevap
- CCreate individual IAM users in each member account for the security auditors, generating access keys and secret keys. Set up an IAM policy on the management account root user that denies organization modifications to prevent routine root user access.
- DCreate a Service Control Policy (SCP) and attach it directly to the management account to restrict its root user from performing routine administration. Implement a custom IAM policy in the management account to block GPU instances and replicate it to all member accounts.
- EAttach an SCP to the Sandbox OU that allows GPU instances only in approved regions. For the audit access, configure a cross-account IAM role in each member account that trusts individual IAM user credentials created specifically for the audit team in the management account.