Reputation: 53
So my elasticbeanstalk has been successfully deployed. However autoscaling seems to be an issue
ASG configo
Desired = 2
Min = 2
Max 4
I have enough instance for the instance type i am using.
When i test my app, just to simulate load, the instances increases to 3, but fails when it tries to bring up another(4th) instance with below errors
Description: Launching a new EC2 instance.
Status Reason: Your quota allows for 0 more running instance(s). You requested at least 1. Launching EC2 instance failed.
Reason: an instance was started in response to a difference between desired and actual capacity, increasing the capacity from
Im i missing something somewhere ? Links will be quite helpfull is some one has seen this before
Upvotes: 1
Views: 840
Reputation: 6079
Looking at the error :
Status Reason: Your quota allows for 0 more running instance(s). You requested at least 1.
From the error message it shows you have hit the limit of EC2 instances. Please check how many instances you are running.
The specifics on the limits can be found in the FAQ here
You can request limit increase as explained here
Thanks
Upvotes: 1