user6136315
user6136315

Reputation: 705

Point AWS ELB to Heroku DNS target

I’m migrating our services to AWS(web, services and DB). All our services are running on Heroku. To minimize the downtime we would like to update CNAME record of our subdomain to point it to AWS ELB(our domain is registered with GoDaddy). ELB is suppose to route the traffic to Heroku DNS target(until we sync the data).

is it possible to route the traffic ELB through Heroku DNS target?

Upvotes: 0

Views: 456

Answers (1)

Matus Dubrava
Matus Dubrava

Reputation: 14502

No that is not possible. ELB can route traffic only to

  1. targets specified by instance id
  2. targets specified by ip address (can't be publicly routable ip address)
  3. lambda functions

That is it and there is unfortunately not much to add to this.

Upvotes: 1

Related Questions