Reputation: 29
I have recently started using the AWS EC2 service and have deployed my application to a single EC2 instance. The EC2 instance and the load balancer were created automatically by eclipse. I want to deploy the same application to multiple instances at the same time, does anyone know how I could do that?
Upvotes: 0
Views: 188
Reputation: 181
I think you are after Elastic Beanstalk. You can either upload application via an S3 bucket or push just the changes with GIT (aws.push command)
http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-reference-branch-environment.html
Upvotes: 1