
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 wants to migrate its on-premises data center to AWS. According to the company's compliance requirements, the company can use only the ap-northeast-3 Region. Company administrators are not permitted to connect VPCs to the internet. Which solutions will meet these requirements? (Choose two.)
A
Use AWS Control Tower to implement data residency guardrails to deny internet access and deny access to all AWS Regions except ap-northeast-3.
B
Use rules in AWS WAF to prevent internet access. Deny access to all AWS Regions except ap-northeast-3 in the AWS account settings.
C
Use AWS Organizations to configure service control policies (SCPS) that prevent VPCs from gaining internet access. Deny access to all AWS Regions except ap-northeast-3.
D
Create an outbound rule for the network ACL in each VPC to deny all traffic from 0.0.0.0/0. Create an IAM policy for each user to prevent the use of any AWS Region other than ap-northeast-3.
E
Use AWS Config to activate managed rules to detect and alert for internet gateways and to detect and alert for new resources deployed outside of ap-northeast-3.
Explanation:
Correct Answers: A and C
A. AWS Control Tower with data residency guardrails - AWS Control Tower provides a comprehensive way to set up and govern a secure, multi-account AWS environment. Data residency guardrails in Control Tower can:
C. AWS Organizations with Service Control Policies (SCPs) - SCPs are the primary mechanism in AWS Organizations to enforce guardrails across multiple accounts:
aws:RequestedRegionWhy other options are incorrect:
B. AWS WAF - AWS WAF is a web application firewall that protects web applications from common exploits, but it cannot prevent VPCs from connecting to the internet at the infrastructure level. AWS account settings don't provide granular control over VPC internet access.
D. Network ACLs and IAM policies - While network ACLs can block outbound traffic, they are not a preventative control (they can be modified). IAM policies can restrict users from using other regions, but they don't prevent VPC internet connectivity at the infrastructure level.
E. AWS Config - AWS Config is a monitoring and compliance service that can detect and alert on configuration changes, but it doesn't prevent actions from happening. It's reactive rather than preventative.
Key AWS Services for Compliance:
Best Practice: For strict compliance requirements, use preventative controls (like SCPs and Control Tower guardrails) rather than detective controls or manual configurations.