I have an AWS Elastic Beanstalk instance and I trying deploy automatically when I do a commit in the Github repository, CodeDeploy is the correct option?
1 Answers
0
votes
CodeDeploy is the correct option
CodeDeploy (CD) is NOT a correct option. CD can't deploy to EB.
To deploy to EB from GitHub, you can use CodePipepline (CP). Specifically, you would need to use the following:
- source action for GitHub to trigger CP when you modify your repo.
- probably a build action to prepare deployment zip package for EB
- ElasticBeanstalk deploy action to deploy to EB.