Topic 1 Question 116
2 つ選択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 anew 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?
Configure Amazon CloudFront in front of the website to use HTTPS functionality.
Deploy an AWS WAF web ACL in front of the website to provide HTTPS functionality.
Create and deploy an AWS Lambda function to manage and serve the website content.
Create the new website and an Amazon S3 bucket. Deploy the website on the S3 bucket with static website hosting enabled.
Create the new website. Deploy the website by using an Auto Scaling group of Amazon EC2 instances behind an Application Load Balancer.
ユーザの投票
コメント(17)
A -> We can configure CloudFront to require HTTPS from clients (enhanced security) https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html D -> storing static website on S3 provides scalability and less operational overhead, then configuration of Application LB and EC2 instances (hence E is out)
B is out since AWS WAF Web ACL does not to provide HTTPS functionality, but to protect HTTPS only.
👍 22palermo7772022/10/20- 正解だと思う選択肢: AD
agree with A and D
static website -> obviously S3, and S3 is super scalable CDN -> CloudFront obviously as well, and with HTTPS security is enhanced.
B does not make sense because you are not replacing the CDN with anything, E works too but takes too much effort and compared to S3, S3 still wins in term of scalability. plus why use EC2 when you are only hosting static website
👍 5Six_Fingered_Jose2022/10/26 - 正解だと思う選択肢: CD
KEYWORD: LEAST operational overhead
D. Create the new website and an Amazon S3 bucket. Deploy the website on the S3 bucket with static website hosting enabled.
C. Create and deploy an AWS Lambda function to manage and serve the website content.
Option D (using Amazon S3 with static website hosting) would provide high scalability and enhanced security with minimal operational overhead because it requires little maintenance and can automatically scale to meet increased demand.
Option C (using an AWS Lambda function) would also provide high scalability and enhanced security with minimal operational overhead. AWS Lambda is a serverless compute service that runs your code in response to events and automatically scales to meet demand. It is easy to set up and requires minimal maintenance.
👍 3Buruguduystunstugudunstuy2022/12/21
シャッフルモード