Skip to content
Home
Blog
Notes

Posts tagged with "aws"

All blog posts tagged with aws

Tag: aws

33 posts found

Showing 33 of 33 posts

CDK Mixin for Deletion Protection
Mar 30, 2026•5 min read

CDK Mixin for Deletion Protection

Apply one CDK mixin at app scope to enforce a consistent deletion-protection baseline in permanent environments: stack termination protection plus retain-aligned resource-level protection on supported services.

awscdkmixin
Read more
Aurora PostgreSQL Serverless (Express configuration) with CDK and Drizzle
Mar 28, 2026•7 min read

Aurora PostgreSQL Serverless (Express configuration) with CDK and Drizzle

Provision Aurora PostgreSQL serverless using express configuration from CDK with AWS SDK custom resources, then manage schema and seed data with Drizzle Kit and Drizzle Studio.

awscdkaurora+1 more
Read more
TanStack AI with AWS Bedrock on TanStack Start (simple example)
Feb 2, 2026•5 min read

TanStack AI with AWS Bedrock on TanStack Start (simple example)

Add TanStack AI with AWS Bedrock to your TanStack Start on AWS setup: Bedrock usage, IAM permissions, and a minimal chat example.

awscdktanstack
Read more
Tag log buckets created by AWS CDK for third party tools
Jan 11, 2026•5 min read

Tag log buckets created by AWS CDK for third party tools

How to tag S3 log buckets created by the AWS CDK so third-party scanners can recognize them.

awscdkcdk-nag
Read more
Using Server Sent Events (SSE) to sync Tanstack Db from AWS DynamoDB
Jan 8, 2026•18 min read

Using Server Sent Events (SSE) to sync Tanstack Db from AWS DynamoDB

Build real-time data synchronization between AWS DynamoDB and TanStack DB using Server-Sent Events. Learn how to stream database changes via DynamoDB Streams, implement SSE endpoints with TanStack Start/Router.

awscdktanstack
Read more
Use a customized CDK bootstrap template
Dec 31, 2025•11 min read

Use a customized CDK bootstrap template

Learn how to customize the AWS CDK bootstrap template to add server access logging and KMS encryption to the staging bucket. Use the CDK Toolkit library to orchestrate multi-region deployments, extract environments from CDK apps, and validate CloudFormation templates with cdk-nag.

awscdkcdk-nag
Read more
Simple example of TanStack DB with DynamoDB on AWS with multiple entities
Dec 27, 2025•23 min read

Simple example of TanStack DB with DynamoDB on AWS with multiple entities

Implement a multi-entity data model with TanStack DB and DynamoDB using single table design. Learn how to manage Person, Address, BankAccount, ContactInfo, and Employment entities with ElectroDB and TanStack DB collections. Includes performance optimization with global collections for instant navigation.

awscdktanstack
Read more
Simple example of TanStack DB with DynamoDB on AWS
Dec 20, 2025•11 min read

Simple example of TanStack DB with DynamoDB on AWS

Deploy a simple TanStack DB + DynamoDB setup on AWS using CDK, with a TanStack Start API route and a query collection powering a small todo UI.

awscdktanstack
Read more
Monitor multiple resources using a single CloudWatch Alarm (with CDK)
Dec 13, 2025•3 min read

Monitor multiple resources using a single CloudWatch Alarm (with CDK)

Use CloudWatch Metrics Insights query alarms (with tags) to monitor many resources with one alarm in AWS CDK.

awscdkcloudwatch
Read more
Use cdk-notifier to check CloudFormation predeployment validations in pull requests
Dec 6, 2025•4 min read

Use cdk-notifier to check CloudFormation predeployment validations in pull requests

Extend cdk-notifier with CloudFormation change sets to validate changes before merging pull requests

awscdkcdk-notifier+1 more
Read more
Deploy TanStack Start serverless on AWS
Nov 30, 2025•9 min read

Deploy TanStack Start serverless on AWS

Deploy TanStack Start on AWS with streaming API Gateway using AWS CDK

awscdktanstack
Read more
Encrypt All Lambda Environment Variables with AWS CDK Aspects/Mixins
Nov 28, 2025•5 min read

Encrypt All Lambda Environment Variables with AWS CDK Aspects/Mixins

A guide on how to encrypt all AWS Lambda environment variables using AWS CDK aspects/mixins. Also from third party libraries.

awscdklambda
Read more
Granular statement cdk-nag AwsSolutions-IAM5 Suppressions
Nov 27, 2025•5 min read

Granular statement cdk-nag AwsSolutions-IAM5 Suppressions

How to document and suppress only the wildcard permissions that are required by AWS services, while keeping the rest of AwsSolutions-IAM5 findings active.

awscdkcdk-nag
Read more
Cleanup Resources from Ephemeral Stacks in AWS CDK with Aspects and Property Injectors
Jun 14, 2025•6 min read

Cleanup Resources from Ephemeral Stacks in AWS CDK with Aspects and Property Injectors

When developing features with ephemeral CDK stacks, the resource retention configuration needs to differ from test and production stacks. This article explains how to use CDK Aspects and Property Injectors to automatically clean up resources from ephemeral stacks.

awscdk
Read more
Suppress cdk-nag findings for custom resource singleton lambda globally
Jan 12, 2025•4 min read

Suppress cdk-nag findings for custom resource singleton lambda globally

This post describes how to suppress cdk-nag findings that are caused by the custom resource singleton Lambda function globally, so that findings which are out of your own control are not reported.

awscdkcdk-nag
Read more
Configure AWS CloudWatch Application Signals Transaction Search with CDK
Jan 7, 2025•5 min read

Configure AWS CloudWatch Application Signals Transaction Search with CDK

Learn how to enable and configure AWS CloudWatch Application Signals Transaction Search using the AWS CDK, including setting up the required IAM policies and X-Ray configurations.

awsaws application signalscdk+3 more
Read more
AWS Application Signals for Node.js Lambda with CDK
Jan 2, 2025•3 min read

AWS Application Signals for Node.js Lambda with CDK

How to configure AWS CloudWatch Application Signals centrally for an AWS account and for individual Node.js Lambdas using the AWS CDK.

awsaws application signalscdk+1 more
Read more
Calling IAM authenticated API Gateway with different HTTP clients
Dec 28, 2024•6 min read

Calling IAM authenticated API Gateway with different HTTP clients

This post describes how to call an IAM authenticated API Gateway with different HTTP clients like ky, fetch, and axios via signature v4 requests.

awsapigatewaysigv4
Read more
Run vs code on a private AWS ec2 instance without ssh (with AWS CDK examples)
Dec 7, 2024•3 min read

Run vs code on a private AWS ec2 instance without ssh (with AWS CDK examples)

Use the browser based vs code for file handling on a private ec2 instance without ssh

awscdkec2+2 more
Read more
Scan all your AWS SSO accounts with Prowler
Nov 30, 2024•4 min read

Scan all your AWS SSO accounts with Prowler

See how this setup can help to scan all AWS SSO accounts with a mix of Prowler, docker, and aws-sso-util.

awsprowlerdocker
Read more
Consideration about cdk-notifier and Tags
Apr 20, 2024•3 min read

Consideration about cdk-notifier and Tags

Description of the diff consequence of two ways of tagging in CDK

awscdkcdk-notifier
Read more
Use cdk-notifier to compare changes in pull requests
Dec 16, 2023•2 min read

Use cdk-notifier to compare changes in pull requests

See how cdk-notifier can help to compare which cdk changes will be applied after merging a pull request

awscdkcdk-notifier
Read more
Use Steampipe to select your AWS resources across SSO accounts with SQL
Sep 8, 2023•3 min read

Use Steampipe to select your AWS resources across SSO accounts with SQL

See how this setup can help to discover your AWS resources across all SSO accounts with a mix of Steampipe, docker, bash scripts, and AWS CLI

awssteampipedocker
Read more
Example how to use zod with CDK serverless v2
Aug 19, 2023•7 min read

Example how to use zod with CDK serverless v2

CDK serverless v2 is for using type saftey develepmonet base on schemas like openAPI. This post is a example how to use zod with CDK serverless v2

awscdkprojen+1 more
Read more
Example how to trigger a Dynamodb export and create an Athena saved query with CDK
Oct 3, 2022•2 min read

Example how to trigger a Dynamodb export and create an Athena saved query with CDK

This post is how to trigger a Dynamodb export and create saved query to create a Athena table from the exported data

awsaws athenacdk+1 more
Read more
Example how to visualize DynamoDB item changes with Quicksight (S3 source) created with CDK
Sep 17, 2022•5 min read

Example how to visualize DynamoDB item changes with Quicksight (S3 source) created with CDK

This post is how to visualize the streamed data changes of a DynamoDb table via Kinesis Data Stream and Kinesis Firehose to S3. Build with CDK.

awsaws kinesisaws athena+2 more
Read more
Example how to create Athena saved queries with CDK
Aug 22, 2022•3 min read

Example how to create Athena saved queries with CDK

This post is about how saved queries are created with CDK. This is useful to have important queries prepared for any users.

awsaws athenacdk
Read more
Example how to analyze DynamoDB item changes with Kinesis and Athena created with CDK
Oct 26, 2021•4 min read

Example how to analyze DynamoDB item changes with Kinesis and Athena created with CDK

This post is how stream data changes of a DynamoDb table via Kinesis Data Stream and Kinesis Firehose to S3, and analyze the data with Athena. Build with CDK.

awsaws kinesisaws athena+1 more
Read more
Example how to analyze DynamoDB item changes with Kinesis and Athena created with Terraform
Aug 27, 2021•4 min read

Example how to analyze DynamoDB item changes with Kinesis and Athena created with Terraform

This post is how stream data changes of a DynamoDb table via Kinesis Data Stream and Kinesis Firehose to S3, and analyze the data with Athena

awsaws kinesisaws athena+1 more
Read more
How to setup AWS Billing metrics in Grafana Cloud via Terraform
Dec 19, 2020•4 min read

How to setup AWS Billing metrics in Grafana Cloud via Terraform

Terraform setup to display AWS billing metrics in Grafana Cloud with S3 Backend and CI/CD pipeline

awsgrafanaterraform
Read more
AWS Amplify Admin UI user management instead of self sign up
Dec 6, 2020•2 min read

AWS Amplify Admin UI user management instead of self sign up

Description of the change from a self sign up to user management from an admin

awsaws amplifyaws amplify admin ui
Read more
How to display AWS billing metrics in Grafana Cloud
Nov 27, 2020•2 min read

How to display AWS billing metrics in Grafana Cloud

Configuration of Grafana Cloud to display AWS billing metrics

awsgrafana
Read more
AWS Amplify Console: How I changed master branchenv to main
Aug 18, 2020•2 min read

AWS Amplify Console: How I changed master branchenv to main

Change of the master branch end amplfiy env to main and migration of the env data

awsaws amplifyaws amplify console
Read more
RSS|

© 2026 Johannes Konings. All rights reserved.