Complete the code to specify the protocol for SSL termination on the load balancer.
LoadBalancerProtocol: [1]The load balancer must use HTTPS protocol to handle SSL/TLS termination.
Complete the code to specify the certificate ARN for SSL termination in AWS Elastic Load Balancer.
CertificateArn: [1]The certificate ARN must be from AWS Certificate Manager (ACM) to enable SSL termination.
Fix the error in the listener configuration to enable SSL termination on port 443.
Listener: {
Protocol: [1],
Port: 443
}The listener protocol must be HTTPS to handle SSL termination on port 443.
Fill both blanks to configure the target group protocol and port for decrypted traffic after SSL termination.
TargetGroup: {
Protocol: [1],
Port: [2]
}After SSL termination, traffic to targets is usually unencrypted HTTP on port 80.
Fill all three blanks to complete the AWS CLI command for creating a listener with SSL termination.
aws elbv2 create-listener --load-balancer-arn [1] --protocol [2] --port [3] --certificates CertificateArn=arn:aws:acm:region:account:certificate/12345678 --default-actions Type=forward,TargetGroupArn=targetgroup-arn
The command requires the load balancer ARN, HTTPS protocol, and port 443 for SSL termination listener.