Julian Paolo Dayag
Julian Paolo Dayag

Reputation: 3719

How to use domain name from third party provider in Elastic Beanstalk

I've read the guide provided by AWS for adding a custom domain.

For beginners like me in this platform, reading it just brings more confusion. If it's possible, it would be really great if someone can create a step by step walkthrough on how to get this done.

So the scenario is, I have a domain which I purchased from a third-party provider and not from Route53. Now, I want to use this domain to point to one our loadbalancing-enabled elastic beanstalk application. This ELB app isn't also using VPC and I can't even modify my Network settings.

enter image description here

I want to point the domain using A record and not a sub-domain(CNAME) to this ELB app.

Edit:

For additional information, my domain name provider is GoDaddy

Upvotes: 1

Views: 831

Answers (1)

John Hanley
John Hanley

Reputation: 81356

The correct answer might change depending on who is managing your DNS records. Check if they support A-ALIAS records for the zone apex. If they do the steps will be similar to the document link below.

Move your DNS servers to Route 53. How? that depends on who is your current DNS provider.

Next, create an A-ALIAS record in Route 53 pointing to your Elastic Beanstalk DNS name. Complete this step for the zone apex (domain.com) and www (www.domain.com).

Your Elastic Beanstalk Environment's Domain Name

Upvotes: 1

Related Questions