ECS Blue/Green Deployment With GitHub Actions And AWS CodePipeline

Vinayak Pandey
DevOps.dev
Published in
3 min readSep 12, 2022

--

In this post,we’ll see how we can set up ECS Blue/Green depoloyment with GitHub actions and AWS CodePipeline.

Step 1: Our application source code is given at https://github.com/vinycoolguy2015/application_code. We also have our Dockerfile and github workflow files in the repo. Fork this repo if you don’t have an application code repo.

This repo has 3 branches: test,staging and main and we have setup branch protection rules so that developers can’t directly push to these branches and every…

--

--