Radar
Radar

Reputation: 25

Configuring HTTPS for Elastic Beanstalk environment

I deployed one web application to EB. I used Route 53 to redirect two domains to my application. On EB environment, it seems it only allows me to add one certificate to port 443 for my load balancer. Let's say my users only use my domain names to access my web application. How should I go about creating and adding SSL certificate(s) to secure the connections from those two domains to my application.

Upvotes: 1

Views: 1391

Answers (1)

Marcin
Marcin

Reputation: 238957

Yes, you can add. In the EB concole, you can add only 1 SSL cert. To add other ones, you have to do it directly in the EC2 console on your load balancer.

The load balancer used by your EB env supports multiple certificates. So you can add extra SSL certificates to your HTTPS listener.

Helpful information is below:

Alternatively, you can register multiple domains under one certificate.

In the EC2 console, you have an option (marked below) to modify the SSL certificates for your HTTPS listener:

enter image description here

Upvotes: 1

Related Questions