Which combination of actions should a SysOps administrator take to meet these requirements?
(Choose two.)
Attach the certificate to each EC2 instance.
Attach the certificate to the ALB.
Create a private certificate in AWS Certificate Manager (ACM).
Create a public certificate in AWS Certificate Manager (ACM).
Export the certificate, and attach it to the website.
Explanations:
The certificate should be attached to the ALB, not the EC2 instances. EC2 instances should not handle SSL termination.
The ALB should terminate SSL connections by handling the HTTPS traffic. The certificate is attached to the ALB.
A private certificate is used for internal purposes and cannot be used for public-facing websites, which require a public certificate.
A public certificate is required for securing traffic to the website, which can be obtained from AWS Certificate Manager (ACM).
Exporting a certificate and attaching it directly to the website is not necessary when using the ALB for SSL termination.