Reputation: 2560
I am trying to run beanstalk with java installed on it very quickly.
So what I do is just open the beanstalk console and after creating the application I create the environment and in the environment pre configuration I chose java.
Then after clicking the create button I get some errors:
Creating security group named: awseb-e-rnwzmmymhx-stack-AWSEBSecurityGroup-SXHGXGDOF5PN failed Reason: Resource creation cancelled
Stack named 'awseb-e-rnwzmmymhx-stack' aborted operation. Current state: 'CREATE_FAILED' Reason: The following resource(s) failed to create: [AWSEBEIP, AWSEBSecurityGroup].
Or the more complete error stack is as follow:
I never attached any EIP and I just let beanstalk handle it . What is the problem?
Should I configure anything else? (Any idea is appreciated.)
Or better to ask this way: Do we need to attach EIP to beanstalk to have it work or there is a workatound using rout53?
Upvotes: 14
Views: 21994
Reputation: 541
Launching the environment with a load balancer allows you to avoid assigning an EIP.
See here: serverfault
Upvotes: 6
Reputation: 52433
Each account has a maximum EIP limit (default is 5). Elastic BeanStalk is not able to get an EIP allocated since your account already used the maximum number of EIPs. You have at least two options:
Upvotes: 13