CDK Pipelines: Continuous delivery for AWS CDK applications
Hi, in this post, we will be deploying the CDK application we built earlier to AWS using CDK pipelines. Here are the articles on the app we built. I recommend you go through them, in other to fully understand the complete process. Build a GraphQL API on AWS with CDK, Python, AppSync, and DynamoDB(Part 1) Build a GraphQL API on AWS with CDK, Python, AppSync, and DynamoDB(Part 2) Prerequisites Here's the starter code, which is the code we built in the last 2 posts. github.com/trey-rosius/cdkTrainer I'll assume you already have this code committed to your own Github account. To have AWS CodePipeline read from this GitHub repo, you need to have a GitHub personal access token stored as a plaintext secret (not a JSON secret) in AWS Secrets Manager under the name trainer-github-token . Let's walk through the process of creating a personal access token and storing it in AWS secrets . Go to your GitHub account and click on settings. Next, click on Devel...