0

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.

kapitanluffy
  • 1,269
  • 7
  • 26
  • 54

2 Answers2

1

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

Community
  • 1
  • 1
maoyang
  • 1,067
  • 1
  • 11
  • 11
0

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?

Rohit Banga
  • 18,458
  • 31
  • 113
  • 191