How do I set up an AWS EC2 Elastic Beanstalk project to work with others?

I have been working on AWS EC2 using an elastic bean stack for several months. Everything goes well. Now the client wants to add another developer to the project. I do not understand a little how to do this. It seems that Elastic Beanstalk uses git in the background and only clicks. I can not clone the repo. I'm not even sure where to go to find a repo.

So my question is: how do I set up (or someone else) so they can collaborate with me?

EDIT: I suppose the other question is: if Elastic Beanstalk set up my git repository for me, how can I check it out and share it with others?

I am using Visual Studio 2010 (with AWS tools installed) on a computer running Windows 7, and the remote instance is Windows.

Thanks.

+4
source share
1 answer

Elastic bean stitch has no concept of repo. An application version is just a package that is stored on S3.

What you need to do is post the repo anywhere, like Github or Bitbucket. Then you share your changes, as with any other project. When the time comes to deploy the version on Elastic Beanstalk, you should run git aws.push , not something like git push origin . Of course, this assumes that you have already configured AWS git dev tools .

As an aside, I would recommend that you set up an IAM user account for each developer so that everyone has their own set of AWS passkeys. This will allow you to revoke deployment access for a person without affecting anyone.

+8
source

All Articles