I am trying to figure out how can i set up two or more applications in single repository.
Lets say: I wanted to keep separate Eb Applications for Production(P) and Development(D) with one environment each(P > env-p & D > env-d). So how can i config my repository that master branch points to P > env-p and development branch points to D > env-d.
Note: I have setup Elastic Beanstalk in single AWS account with different applications. I have tried searching but could not anything related to this.
If any body have done this please share your views.
Thanks in advance.
If I understand you correctly you want to run an application with two different environments, for two different branches.
You can do that with a config file in:
.elasticbeanstalk/config.yml
It will create this file when you do
eb init
for each branch, but I have seen it sometimes needs some manual edit.Here is another answer for a similar question with more discussion.
AWS Elastic Beanstalk deploy to multiple applications
Related documentation: