DEV Community

Mohamed Moanis
Mohamed Moanis

Posted on

How to connect Github to AWS CodePipelines?

AWS documentation describes two ways to connect your Github repository to CodePipelines. The first –recommended– way is easy to follow but it is only available via the AWS console or CLI. If you are using CDK you are left with the second option which I describe here.

Github loves CodePipelines

Step 1: Create OAuth token to access your Github repository

The first step is to generate an access token to allow your pipeline to access and read your repository on Github. Follow the Github documentation to create your personal access token as described here.

Make sure to select the admin:repo_hook and repo permissions to allow your pipeline a read access and also allow it to install a webhook to trigger pipeline actions when you make a new commit.

Step 2: Store the OAuth token in AWS Secrets Manager

In the second step, we need to store the token so that we can use it. The access token is an important security credential and therefore you do not want to store it as plain text. Alternatively, we will store it in Secrets Manager. This way you can reference it dynamically in your CDK code.

Set the access token and the AWS region you are using and create the secret via CLI:

➜  ~ GITHUB_ACCESS_TOKEN='this is my secret'
➜  ~ REGION=us-east-1
➜  ~ aws secretsmanager  create-secret --name github-access-token-secret --description "Github access token" --secret-string $GITHUB_ACCESS_TOKEN --region $REGION
Enter fullscreen mode Exit fullscreen mode

Step 3: Setup a CloudFormation stack to deploy the pipeline

It is important to note that your CodePipeline is by itself a CFN resource that you can define using CDK. In the third step, we define a CFN stack to deploy our pipeline. In this example, I am using NodeJS CDK:

import * as cdk from 'aws-cdk-lib';
import { CodeBuildStep, CodePipeline, CodePipelineSource } from 'aws-cdk-lib/pipelines';
import { Construct } from 'constructs';

export class PipelineStack extends cdk.Stack {
    constructor(scope: Construct, id: string, props?: cdk.StackProps) {
        super(scope, id, props);

        // Set your Github username and repository name
        const branch = 'master';
        const gitHubUsernameRepository = 'mmoanis/feed-mohamed-app';

        const pipeline = new CodePipeline(this, 'Pipeline', {
            pipelineName: "MyCDKPipeline",
            synth: new CodeBuildStep('SynthStep', {
                input: CodePipelineSource.gitHub(gitHubUsernameRepository, branch, {
                    authentication: cdk.SecretValue.secretsManager('github-access-token-secret'),
                }),
                installCommands: [
                    'npm install -g aws-cdk'
                ],
                commands: [
                    'npm ci',
                    'npm run build',
                    'npx cdk synth'
                ]
            })
        });
    }
}
Enter fullscreen mode Exit fullscreen mode

The CFN template will be generated with a dynamic reference to the secret stored in Secrets Manager with your Github personal access token.

Step 4: Commit your code and deploy your stack

The final step, commit your code and push it to your branch. Then deploy your CFN stack from CLI to bootstrap your pipeline:

cdk deploy
Enter fullscreen mode Exit fullscreen mode

Once you deploy your CFN stack, your pipeline will start building and deploying your stack for you. Each commit to the specified branch will trigger an action on your pipeline which in turn will mutate it self –if you have changed it.

I created a complete Github repository with a full example that you can find here.

Enjoy!

Top comments (0)