Questions tagged [ebcli]

ebcli is the short version of Elastic Beanstalk Command Line Interface. This CLI helps people to deploy to AWS Elastic Beanstalk easily.

96 questions
3
votes
2 answers

EB CLI - how to suppress code commit prompt "Do you wish to continue with CodeCommit?"

Every time I use a command on the Elastic Beanstalk CLI like eb init or eb deploy it prompts me with: Do you wish to continue with CodeCommit? (y/N) (default is n): And I always say 'no'. Is there a way to suppress this prompt or provide a…
richflow
  • 1,902
  • 3
  • 14
  • 21
3
votes
1 answer

404 on any route for Flask app deployed to Elastic Beanstalk

I am trying to host a Flask app that implements a REST API using Flask-RESTful on Elastic Beanstalk through the eb cli. I have successfully deployed my application and I am not getting any error messages on my events log. I can successfully ssh into…
MarcioPorto
  • 555
  • 7
  • 22
3
votes
2 answers

AWS elastic beanstalk eb init command Mumbai region not available

When I am running eb init command all zones are available except Mumbai region. My EB CLI version is 3.7.3. Any idea?
2
votes
0 answers

Permissions on phpmyadmin config.inc.php with on elastic beanstalk using .config file

i installed phpmyadmin on elastic beanstalk application and i got the following error "Wrong permissions on configuration file, should not be world writable!" every time i deploy code to the application i have to go on server and change manually the…
2
votes
1 answer

The model being used for the service elasticbeanstalk is missing the serviceId metadata property

Receiving ERROR: MissingServiceIdError :: The model being used for the service elasticbeanstalk is missing the serviceId metadata property, which is required. whenever trying to run the command eb init. installed the awsebcli with the command…
2
votes
1 answer

Cannot create Elastic Beanstalk environment with CLI: "The following resource(s) failed to create: [AWSEBInstanceLaunchWaitCondition]"

I'm trying to create a new Elastic Beanstalk environment with the EB CLI but it keeps failing even though I've created an identical environment with the console which succeeds exactly as expected. The command I'm running: $ eb create…
Aron
  • 8,696
  • 6
  • 33
  • 59
2
votes
2 answers

"You can't enable rolling updates for a single-instance environment" even when not specifying "aws:autoscaling:updatepolicy:rollingupdate"

I'm trying to create a new Elastic Beanstalk environment with the EB CLI but it's failing because of an invalid option, even though that option isn't set in my config. The command I'm running: $ eb create my-new-environment -v --timeout 15 The…
Aron
  • 8,696
  • 6
  • 33
  • 59
2
votes
3 answers

Can't find virtualenv installation during eb-cli setup

I'm installing the Elastic Beanstalk CLI from Github on a Windows machine, but it keeps erroring out because of virtualenv. I get this error: C:\Users\bigji\Bootcamp\NODE\ClassActivities\EB-CLI>python…
2
votes
2 answers

AWSeducate credentials are not accepted for Elastic Beanstalk ebcli

When I log into my awseducate account and I click on Account Details I get my credentials. See the credentials generated by the account I successfully used these credentials with my S3 buckets to upload and download files. But when I try to use…
simopr
  • 159
  • 1
  • 7
2
votes
0 answers

ERROR: CommandError - SSH is not installed. You must install SSH before continuing on ebcli

I'm setting up a new application. However whenever I try to set up SSH with my instances on ebcli, it results in the error bellow. I have already reinstalled the open ssh client and I am able to generate keys in the terminal as well. I am not…
2
votes
1 answer

AWS Elastic Beanstalk wont load static files from public folder for nodejs app

I have deployed the nodejs application with aws eb deploy, client.js is not getting loaded in index.hbs files and returning 404 error (Failed to load resource: the server responded with a status of 404 (Not Found)) I have tried all the step in the…
2
votes
4 answers

How do I link a project source folder to an existing Elastic Beanstalk application?

I've been using the AWS console to upload a WAR file for deployment. Now I want to do it from the command line. I've been following this guide and see eb init and read the help with eb init --help and eb --help, but the only option is to create a…
Chloe
  • 25,162
  • 40
  • 190
  • 357
2
votes
1 answer

Upon initial environment create using eb create the ebextensions are not reflected

Below is the setup of the application which runs a docker container into elasticbeanstalk. step 1: created the parent folder say apptest and inside that I have placed the Dockerfile, package.json and small hello world server.js node app. step 2:…
2
votes
1 answer

AWS EB CLI installation fails with "python setup.py egg_info" failed with error code 1"

I am trying to install awsebcli in a virtualenv like this: pip install awsebcli --upgrade --user Installation fails with the following error: Complete output from command python setup.py egg_info: Traceback (most recent call last): File…
Rashik
  • 1,014
  • 2
  • 16
  • 36
2
votes
2 answers

aws-cli equivalent of eb deploy?

I'm attempting to deploy an app from one ElasticBeanstalk instance to another. Running pip install awsebcli --upgrade --user doesnt install the eb cli tool for some odd reason on the EC2 machine. Does anyone know the equivalent of eb deploy using…