Create the AWS CI/CD Pipeline
Set up AWS CodeCommit, CodeBuild, and CodeDeploy to deploy automatically to EB.
We'll cover the following...
Import files into the CodeCommit repository
Let’s pull our AWS CodeCommit repo and then merge our previous work from GitLab pipelines into our CodeCommit repo.
- In the terminal below, add the required keys and then run the command below to pull the CodeCommit repo.
Press + to interact
git clone codecommit::us-east-1://educative-symfony-aws
- Now, bring the previous GitLab pipeline work into the terminal below as well, to merge code into the CodeCommit repository.
- Find the HTTPS link in the SymfonyCICD GitLab repo.
- Add the Git clone to the HTTPS link before running it. The command will look like the following. Run this command in the terminal below:
git clone https://gitlab.com/educative2/SymfonyCICD.git
...