kapitanluffy
kapitanluffy

Reputation: 1267

aws elastic beanstalk pulling from existing environment

I have an existing environment already in amazon. This is my first time to use the CLI tools. How can I connect my local repository to the already existing environment in AWS?

I tried following the instructions given in this link but it only shows me how to "deploy" a new application.

Upvotes: 0

Views: 1148

Answers (2)

maoyang
maoyang

Reputation: 1095

It is an easy process.

  1. Install eb and git.
  2. eb init, if you already has an environment, just use that one.
  3. eb create
  4. git add your application
  5. eb deploy

You can also reference here.Pushing to an existing AWS Elastic Beanstalk application from the command line

Upvotes: 1

Rohit Banga
Rohit Banga

Reputation: 18918

If your goal is to use a CLI to manage an existing Elastic Beanstalk application. You can also look at AWS CLI. You can refer this guide for using aws cli with Elastic Beanstalk.

Does that meet your requirements or is it necessary to use git for managing your existing environment?

Upvotes: 0

Related Questions