
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 a popular content management system (CMS) for its corporate website. However, the required patching and maintenance are burdensome. The company is redesigning its website and wants a new solution. The website will be updated four times a year and does not need to have any dynamic content available. The solution must provide high scalability and enhanced security. Which combination of changes will meet these requirements with the LEAST operational overhead? (Choose two.)
A
Configure Amazon CloudFront in front of the website to use HTTPS functionality.
B
Deploy an AWS WAF web ACL in front of the website to provide HTTPS functionality.
C
Create and deploy an AWS Lambda function to manage and serve the website content.
D
Create the new website and an Amazon S3 bucket. Deploy the website on the S3 bucket with static website hosting enabled.
E
Create the new website. Deploy the website by using an Auto Scaling group of Amazon EC2 instances behind an Application Load Balancer.
Explanation:
Correct Answers: D and A
Why D (Amazon S3 with static website hosting) is correct:
Why A (Amazon CloudFront with HTTPS) is correct:
Why other options are incorrect:
B (AWS WAF for HTTPS): AWS WAF is a web application firewall, not a mechanism for providing HTTPS functionality. HTTPS is provided by CloudFront, ALB, or other services, not WAF.
C (Lambda function): While Lambda can serve static content, it's more complex than S3 static hosting for this use case. Lambda would require code management and potentially more operational overhead than S3.
E (Auto Scaling group of EC2 instances): This would reintroduce the patching and maintenance burden the company wants to avoid. EC2 instances require OS patching, security updates, and infrastructure management.
Key Points: