How to setup CD for AWS Elastic Beanstalk using CodePipeline?

How to setup CD for AWS Elastic Beanstalk using CodePipeline?

As developers, we like to automate boring, repitative tasks like uploading your code to the server... So let's do it!

·

2 min read

Introduction

So, Now you have your code running on AWS. It's secure and cheap, but you still have to upload your code in zip files. How archaic😱!! Let's fix this in this article using another awesome AWS Service called the CodePipeline. This is gonna be a short one guys.

This article is a sequel to the previous one called How to setup a https server in elastic beanstalk. It's not required to read the previous one, but I would recommend doing so before reading this.

What is Code Pipeline?

It is an AWS Service that provides fully managed, continous devlivery that helps you automate the release pipelines for fast and reliable application and infrastructure. You can automate various phases like

  • Build
  • Test
  • Deploy and this automation will run every time there is a code change.

It supports various source code sources, we'll be using github but there is very little difference in how to use any other service if you need to.

How to Setup CD

Go to code pipeline option in your console and press "Create New Pipeline".

image.png

Enter the name and leave everything as default. Click "Next"

image.png

In the source stage, select the provider and fill in the details. We'll be using Github (Version 2) here.

image.png

If you require a build stage, configure this step. We'll be skipping this stage.

image.png

In the deploy stage, select AWS Elastic Beanstalk and fill other details. Click "Next" and review everything.

Conclusion

Once you submit, your pipeline will be active. Now, as soon as you push code to github, it'll reflect in your deployment very soon.

Readme Badges

If you need github readme badges, refer to [this article] (medium.com/swlh/aws-ci-cd-dynamic-build-bad..) for how to set it up. You can also use this npm library for monitoring the status.

Did you find this article valuable?

Support KaviiSuri by becoming a sponsor. Any amount is appreciated!