From the course: Deploying Your AWS Application to the Cloud with Docker

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Creating a CI/CD pipeline for your CodeBuild project

Creating a CI/CD pipeline for your CodeBuild project - Amazon Web Services (AWS) Tutorial

From the course: Deploying Your AWS Application to the Cloud with Docker

Start my 1-month free trial

Creating a CI/CD pipeline for your CodeBuild project

- [Instructor] We're finally able to create an automated CodeBuild project. Let's start by creating a pipeline, and from there we're going to configure CodeBuild. Here in the terminal, I'll type git status, and we just changed this file, so we need to be sure to push it or repo. So git add buildspec. And we're going to commit the change. Git commit -m and the message is, "Updated BuildSpec". And of course, we push it. And now we know for sure the code is updated in our CodeCommit repository. Let's go back to the AWS Console. We're going to go to CodePipeline, type code pipeline, there it is. We're going to create a pipeline. Webapp-cicd is what we're going to call it, and the role name is fine, so click Next. The source provider is going to be CodeCommit, and the repository is the one that we have, and the branch is master. Keep in mind, in the real world, you may have a development branch, a test branch,…

Contents