Reputation: 796
I'm trying to do the deploy in the Gitlab CI, I already tried to use the EB CLI, but with no success. But I've found that the AWS CLI has elastic beanstalk support too and then I tried this:
aws elasticbeanstalk update-environment --application-name APPNAME --environment-name ENVNAME --environment-id APPID
But this doesn't update the code like the eb deploy
command do. Any suggestions?
Upvotes: 2
Views: 1444
Reputation: 2526
eb deploy
is essentially a three-step process:
CreateApplicationVersion
.VersionLabel
, and pass it to the above update-environment
call.Upvotes: 4