amazon-web-servicesamazon-s3amazon-elastic-beanstalk

How to upload and deploy zip file to AWS elastic beanstalk via CLI?


I do not want to use the console. No manual processes. I need a command line version, something that I can code in my continuous deployment scripts.

As part of the build process, I can output a ZIP file (be it on my local machine or in CI process, e.g: via bitbucket pipelines or AWS codedeploy VM instance).

I want a command like:

aws eb deploy my-app ./server.zip

That is, first upload my chosen zip file and then deploy it (doesn't have to be one command).

The official eb deploy does not seem to support this, nor have I been able to find any other method to do this.

Any ideas would be much appreciated :)


Solution

  • I don't think eb CLI supports uploading a ZIP and updating an environment but you can use a combination of AWS CLI commands.

    1. Upload the ZIP to S3
    2. Create an application version
    3. Update the environment

    Example,

    aws s3 cp deploy.zip s3://mybucket/deploy.zip
    aws elasticbeanstalk create-application-version --application-name my-app --version-label 12345 --source-bundle S3Bucket="mybucket",S3Key="deploy.zip"
    aws elasticbeanstalk update-environment --application-name my-app --environment-name MyApp-env --version-label 12345