Reputation: 693
I have elastic beanstalk service (HTTP) with elastic IP address assigned. I need to have service with SSL certificate, so I created app load balancer.
APP Load Balancer (HTTPS) >> EC2 (HTTP)
Is it possible to have public static IP addresses for my HTTPS service?
Upvotes: 0
Views: 108
Reputation: 37480
No, if you are terminating SSL on your load balancer this is not possible.
It may be possible to use a Network Load Balancer (NLB) with a proxy behind it which would allow you to use static IPs, but this seems overly complicated. Why do you need static IPs?
The architecture would look like:
NLB --TCP--> Proxy Layer --TCP--> ELB(SSL) --HTTP--> Back End
I'm not sure if this would be possible with Beanstalk though.
Upvotes: 1