I am running a Spring Boot application in EC2. I want to make the API calls as HTTPS instead of HTTP. This is what I did: Brought a domain in godaddy and configured it in Route 53. Created a cert from AWS certificate manager. Created a Load Balancer and added the cert. In route 53 directed my traffic to ELB.
Above things are working fine now. I have only one instance. Use of ELB is only for SSL. But I want to get rid of ELB as it is costing me more
Is there any other way I can make the API calls as HTTPS for spring boot application running on ec2 without ELB?