Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to switch of load-balancer for my Elastic Beanstalk instance. Currently I don't need it and I don't want to pay for it.

It is possible to delete load-balancer in EC2 managment window but then Elastic Beanstalk health state is switched from GREEN to RED. I just found a information that it's not possible.

Does someone has a trick how to run Elastic Beanstalk without loadbalancer and have environment GREEN health state?

share|improve this question
3  
I'm afraid you cannot remove the load balancer from Elastic Beanstalk since its part of the package. You can do something else which may require a bit more configuration - you can create a CloudFormation script that uses a predefined AMI (probably something similar to what Beanstalk uses) and do all the deployment on your own. – Eran Sandler Feb 6 '12 at 14:48
I believe you can grab the Elastic IP associated with your load balancer from the EC2 management page, and associate it directly with your app server instance. I expect the preconfigured health monitoring would still fall over, though - so more changes would be needed to get everything "green" again. – rvalue Mar 21 '12 at 23:01

1 Answer

up vote 1 down vote accepted

It's not possible to remove the load balancer and have Elastic Beanstalk still work correctly. The load balancer is an integral part of the way that Elastic Beanstalk works.

It would be nice if EB would automatically unprovision the load balancer if the scaling server count was set to 1/1, but alas it doesn't work that way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.