AWS SNS Implementing event-driven communication using AWS SNS and AWS CDK This post shows how to create an SNS topic with the AWS CDK, publish a message from an API, and subscribe to the SNS topic from a service to read SNS events.
GitHub Actions Publish a Docker image to Amazon ECR from a GitHub Actions This post shows how to build, tag, and push a Docker image in Amazon ECR from a GitHub Actions workflow. The authentication to AWS is done using OpenID Connect.
AWS CDK Create an OpenID Connect for GitHub with the AWS CDK This post shows how to create an OpenID Connect for GitHub and attach some IAM roles to access AWS resources from the GitHub Actions workflow. We will use the AWS CDK as the IaC tool.
Node.js Translate texts in Node.js with Amazon Translate This shows how to use the AWS SDK v3 client for Amazon Translate in a Node.js application to translate text from one language to one or many.
Node.js Install and use the AWS SDK v3 in Node.js In this post, we will see how to install the AWS SDK v3 and use it in a Node.js project to interact with an AWS service.
CloudFront Configure a custom domain with SSL on AWS CloudFront This post shows how to attach a custom domain name to a CloudFront distribution and secure it with a custom SSL certificate generated. Doing that allows a website to be served with a human-friendly URL.
AWS Install and use the AWS CLI v2 locally In this post, we will learn how to install the AWS CLI v2, configure the AWS credentials, and run a command to manage AWS services from the terminal of our computer.
CloudFront Host a static website on AWS with S3 and CloudFront This post shows how to upload static files to an S3 bucket, link the S3 bucket to a CloudFront distribution, and allow the distribution to serve files from a CloudFront distribution URL.
REST API Create a REST API with AWS Lambda and API Gateway using AWS CDK This post shows how to define RESTful API routes on AWS API Gateway that invoke Lambda functions. We will write the infrastructure stack using the AWS CDK and SAM for local testing.
Node.js Send email in Node.js using Handlebars and Amazon SES In this post, we will see how to set up Amazon SES and send emails through SMTP in Node.js using Handlebars and Nodemailer.
Docker Push a Docker image in AWS Elastic Container Registry In this post, we will see how to push a Docker image into a private and public repository on AWS Elastic container repository.
Java Deploy a Java Lambda Function and API Gateway with AWS CDK In this post, we will see how to deploy an API Gateway and a Lambda function written in Java using the AWS CDK.
Community Deploy Forem on AWS and build your tech community Forem is an open-source software for building communities. In this post, we will see how to self-host an instance on AWS and Digital Ocean.
AWS Using TypeScript and Esbuild to deploy a Lambda Function with AWS CDK Do you want to know how to deploy your Lambda function written in Typescript using AWS CDK? We will use Docker and Esbuild to test it locally and deploy it in production.
AWS Deploy a Lambda Function in Node.js with AWS CDK v2 In this tutorial, we will see how to create and deploy a lambda function using the AWS CDK. We will see how to test the Lambda function locally by combining it with the SAM CLI.
Lambda How to deploy a AWS Lambda container with Docker In this tutorial, we will create an AWS Lambda function from a Docker image to backup a PostgreSQL database. We will also see how to test in local and deploy in production.