AWS Route53 | Alias record from other DNS providers

Viewed 127

My client has a domain address on Godaddy and I would like to just connect A record to AWS Api Gateway without changing NS records because my client using other records such as MX and etc on Godaddy and would stay on it.

In Route53 we can create records by alias directly but in this case I'm not sure how could it be possible.

2 Answers

Base on my recent searches on AWS documents and also Evan's document, there is no way without ANAME (Alias Name Record) that must provided by your DNS provider.

I'm not sure that my customer accept migration from existing DNS provider but I'm going to suggest below as our second solution:

example.com couldn't set by ANAME but www.example.com could set CNAME then we can make a simple redirect from example.com to www.example.com. I think Godaddy providing url redirect by default otherwise we must run an EC2 just for this redirection.

I know it sucks but it seems that there is no any other way.

I will appreciated If someone knows better solution.

Related