Skip to content
This repository was archived by the owner on Jan 10, 2022. It is now read-only.

Deploying on AWS

Milad Khakpour edited this page Jan 15, 2020 · 6 revisions

AWS Elastic Beanstalk

https://aws.amazon.com/elasticbeanstalk/?nc1=h_ls

Workflow

  1. AWS CodeCommit for source control --> Altr. (S3, GitHub)
  2. AWS CodeBuild as a place to build and run automated tests --> Altr. (Jenkins)
  3. Elastic Beanstalk for deployment. Altr. (AWS CodeDeploy, third parties)
  4. AWS CodePipeline,on every code commit, we can initiate the CI/CD workflow, taking the code update through the automated tests inside of CodeBuild, and preparing an artifact for the next stage in our pipeline.

CodeBuild

How to trigger:

  • manually
  • using Lambda function to trigger the build.
  • third party continuous integration servers trigger CodeBuild
    • Using AWS CodePipeline to trigger a build as part of the management process.
Clone this wiki locally