Q55 — AWS SAA-C03 Ch.15
Question 55 of 100 | ← Chapter 15
Q1155. A company is redesigning a static website. The company needs a solution to host the new website in the company's AWS account. The solution must be secure and scalable.Which combination of solutions will meet these requirements? (Select THREE.)
- A. Configure an Amazon CloudFront distribution. Set the Amazon S3 bucket as the origin. ✓
- B. Associate an AWS Certificate Manager (ACM) TLS certificate to the Amazon CloudFront distribution. ✓
- C. Enable static website hosting for the Amazon S3 bucket.
- D. Create an Amazon S3 bucket to store the static website content. ✓
- E. Export the website's SSL/TLS certificate from AWS Certificate Manager (ACM) to the root of the Amazon S3 bucket.
- F. Turn off Block Public Access for the Amazon S3 bucket.
Correct Answer: A. Configure an Amazon CloudFront distribution. Set the Amazon S3 bucket as the origin., B. Associate an AWS Certificate Manager (ACM) TLS certificate to the Amazon CloudFront distribution., D. Create an Amazon S3 bucket to store the static website content.
Explanation
ABD OR ACD.ACD.To host a secure and scalable static website in AWS, the following combination of solutions will meet the requirements:A. Configure an Amazon CloudFront distribution. Set the Amazon S3 bucket as the origin.B. Associate an AWS Certificate Manager (ACM) TLS certificate to the Amazon CloudFront distribution.D. Create an Amazon S3 bucket to store the static website content.A. CloudFront Distribution: Using CloudFront provides a Content Delivery Network (CDN) that enhances the scalability and performance of the static website by caching content at edge locations.B. ACM TLS Certificate: Associating a TLS certificate from ACM with the CloudFront distribution ensures secure HTTPS access to the website, enhancing security.D. S3 Bucket for Static Content: An S3 bucket is the most straightforward way to store and serve static website content.This combination effectively meets the security and scalability requirements for hosting a static website on AWS.