CDK Cognito Protected API Demo with Postman
In this demo we will see how to deploy a Cognito protected API and test it with Postman using OAuth 2.0 for authentication and login
46 Published posts
subaud is authored by Court Schuett (he/him). While Court is an 8090 Inc employee, opinions and statements on this blog are his own.
In this demo we will see how to deploy a Cognito protected API and test it with Postman using OAuth 2.0 for authentication and login
Updated NextJS App deployed to App Runner with SSR and GitHub Actions
This demo will explain how to deploy a multi-region pipeline with AWS CDK by passing parameters between stacks.
NextJS App deployed to App Runner with GitHub Actions
In this demo we will see how to deploy an NVIDIA NIM to EC2 with Docker to do your own inference
In this demo we will see how to deploy an application on AWS that will capture insights from GitHub and store them in S3 to be easily queried with...
In this demo we will see how to deploy and test a projen based project with cdk-nag
A CDK stack that will deploy a will create an ECS hosted application for streaming audio with gRPC to Whisper and getting the transcription output
This simple bash script can be used to get the public and private IP addresses of a Fargate Cluster
In this demo we will see how to deploy an Amazon Bedrock Knowledge Base with an OpenSearch Vector Index using CDK
A simple React application and related infrastructure that will consume Amazon Chime SDK call analytics events
This demo will show you how to deploy and use a gRPC server and client to stream audio and use Amazon Transcribe to analyze the audio
This demo will go through the steps to process a file with ffmpeg and stream the contents to KVS using Node.js
Feature flags can be used to modify the deployment characteristics of a CDK deployment. These feature flags can be enabled in projen by modifying...
In this demo we will see how to deploy a custom built Fargate container using CodeBuild
How to build a private Fargate task and connect to it with an AWS Lambda function using AWS CDK.
When uploading files and directories during a CDK bucket deployment, `exclude` can be used. This samples shows how to use that feature.
This Cloudformation template will deploy a simple EC2 instance to be used as a development server. Several common packages are included in the...
CDK Constructs are a great way to create reusable and flexible code for yourself and others. projen makes it easy to create and publish the...
This article will show you how to add custom GitHub Actions workflows with Projen
This demo will show how to build and deploy a Fargate WebSocket server. This application will automatically scale and use TLS to secure the...
In this demo, we will be building a React based WebSocket reader that uses Amazon API Gateway to read data from a Kinesis Data Stream
This CDK will deploy a an Asterisk server to AWS Fargate from multiple CPU architectures
In order to deploy a Certificate with a CloudFront Distribution, a multi-stack CDK must be used to deploy the Certificate in us-east-1 and the SPA...
This demo will use CDK to deploy a Minecraft server on AWS Fargate using Route 53 as the trigger
This demo will describe how to create a CDK with conditional resource deployment and how to use Environment Variables with that conditional...
An update to the previous CDK Construct Custom Resource post. This time we will be using Typescript instead of JavaScript for the Lambda function.
This article will show you how to deploy a Python Lambda function with additional dependencies using CDK
How to build a private RDS database and connect to it with an AWS Lambda function using AWS CDK.
If you need to modify the keys of a Python dictionary, a recursive function can be a useful way to work through the entire dictionary. This...
A twist on the previous [Recursively Modify Python Dictionary](/content/blog/recursively-modify-python-dictionary.md), this function will modify a...
[NextJS](https://nextjs.org/learn/foundations/about-nextjs/what-is-nextjs) is a powerful React framework that we can use to deploy directly from...
Creating an [AMI](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIs.html) (Amazon Machine Image) can be done via the AWS Console. It can...
If you need to modify the keys of a Python dictionary, a recursive function can be a useful way to work through the entire dictionary. This...
To add on to the previous [article](https://subaud.io/importing-an-amazon-lex-bot-with-cdk/) that described how to import an Amazon Lex Bot with...
Amazon Lex Bots are a way to use natural language conversational interfaces that can be used through a variety of integrations such as Facebook...
This example will build a CDK Pipeline that will build a backend and frontend and then pass API Gateway URL information from the backend to the...
Cloud-init is a powerful way of configuring an EC2 instance. CDK can create an EC2 instance and use cloud-init to pass dynamically created...
CDK Constructs are a great way to create reusable and flexible code for yourself and others. projen makes it easy to create and publish the...
Managing multiple AWS accounts with AWS CLI can be a challenge. Here is how I set up my macOS terminal. This configuration will set up a...
When building ARM64 resources with CDK Pipelines, it is necessary to have them built using an ARM64 Image with CodeBuild.
Simple bash script to download and compile [SIPp](https://github.com/SIPp/sipp.git) on an Amazon Linux 2 instance. This can take a while to build...
This simple script will look through a bucket to find all objects that match a `LastModified` date and delete. This can be adjusted to delete...
Previously, we looked at how to use CDK Pipelines to create a [full stack...