Reputation: 789
I have DNS service provider(web application) as godaddy with CNAME record resolving to DNS value of application load balancer in @AWS. There is requirement where the webapplication request from customer network should route/resolve to specific AWS region based on IP address /subnet of customer. Is there a feature in R53 or load balancer to achive this. I see there is such feature in mircosoft @azure traffic manager to do subnet based routing!. Thank You
Upvotes: 0
Views: 82
Reputation: 103
It seems you need Route53's geolocation routing, as it works by mapping the IPs from the originating DNS queries to specific AWS resources, like in your case, the loadbalancer.
Here's a link to the resource: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-geo
Upvotes: 1