Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing the name of a Load Balancer on AWS Console

After navigating to Menu > EC2 > Load Balancing > Load Balancers, I found that an important load balancer I inherited was named "testing", where it should be named something more meaningful for future dev ops (i.e. "search"). This load balancer is currently in use with a few instances running.

I'd like to change the name of this load balancer if possible, or at minimum find some way to make it clear on the AWS Console this load balancer is for our "search" functionality. I added a Tag to the LB, but there's no way to make tags visible on the table.

Is there any way to change the name of the load balancer, or at least add a "display name" or "notes" column to the console's UI?

like image 586
limasxgoesto0 Avatar asked Apr 25 '16 17:04

limasxgoesto0


People also ask

What is DNS name in load balancer AWS?

This DNS name includes the name of the AWS Region in which the load balancer is created. For example, if you create a load balancer named my-loadbalancer in the US West (Oregon) Region, your load balancer receives a DNS name such as my-loadbalancer-1234567890.us-west-2.elb.amazonaws.com .


1 Answers

You can't change the name of a load balancer, because that would break the sites that use the load balancer.

ELBs have an associated hostname, that looks like this:

${balancer_name}-${opaque_identifier}.${region}.elb.amazonaws.com

(The ${opaque_identifier} is assigned by the ELB provisioning infrastructure to disambiguate same-named ELBs belonging to different accounts, but has no documented external meaning.)

Renaming the load balancer, if it were allowed, would necessarily change this hostname, which is how sites are pointed to the balancer, using CNAME records or A-record aliases (in Route 53)... and that would break the sites, since they would then be pointing to a nonexistent hostname.

The simplest solution is to create a new balancer with the name you want, using the same configuration, then migrate to it: with the old one still functioning normally, attach the new balancer to the same back-end instances, wait for them to show "in service" ... test ... then change the DNS entries pointing to the old balancer to point to the new balancer ... wait for the TTLs on the old DNS records to elapse, for the new balancer to pick up the traffic, and for the old balancer to show no traffic in the Cloudwatch metrics ... verify behavior ... then delete the old balancer.

Having the same set of instances attached to multiple ELBs is a supported configuration, so you should not have any transitional issues with this if you configure the new balancer identical to the old one, with the same subnets, security groups, listener configurations, etc.

like image 130
Michael - sqlbot Avatar answered Sep 21 '22 15:09

Michael - sqlbot