I am developing an Elastic Beanstalk app. It is a Scala web application, built with sbt
. I want to deploy the resulting WAR from the command line to an existing environment.
All I can find is the eb
CLI which appears to require you to use git: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-getting-started.html
Is there not a way to simply specify a WAR and environment name to perform the deployment?
What is the best workaround otherwise? I can upload to S3 from the command line and then use the web app to choose that file, but it's a bit more painful than I wanted.