In this post, I will explain how we can use AWS Verified Access to access an application without requiring a VPN..Refer to the original article that I published on https://duleendra.medium.com
Category: AWS
EventBridge Pipes Using Terraform
In this post, I will show you how to implement a simple event-driven application using EventBrdige Pipes and Terraform. At the time of writing this post, EventBrdige Pipes resources are not available with Terraform AWS Provider, therefore I use Terraform AWS Cloud Control Provider (awscc). You can follow this link to learn more about EventBridge Pipes. Refer to the original article…
Protect Personally Identifiable Data with CloudWatch Log Masking
Logging is one of the essential components of software development. We use different types of logs to identify issues in applications, track application events, analyze the performance of applications etc. Even though logs are very beneficial, they also introduce a huge risk to your business. For example, logging sensitive data of the customers, exposing security…
Reprocess Past Events with Amazon EventBridge Archive and Replay
In Amazon EventBridge, you can create an encrypted archive of the events published to an event bus. In this post, I will explain how we can create an event archive and replay those events later. Refer to the original article that I published on https://duleendra.medium.com
Using AWS Lambda with Amazon Aurora MySQL
Amazon Aurora is a fully managed relational database engine that is compatible with MySQL and PostgreSQL. In this article, I will explain how you can invoke an AWS Lambda function from an Amazon Aurora MySQL cluster with the native function lambda_sync or lambda_async . Refer to the original article that I published on https://duleendra.medium.com
Accessing a Cross-Account Amazon SQS Queue Using AWS Lambda
This post will show you how Lambda functions can consume messages from an SQS queue in a different AWS account. Refer to the original article that I published on https://duleendra.medium.com
Querying Data in S3 Using Amazon S3 Select
We can use Amazon S3 Select to retrieve a subset of data from an S3 object using simple SQL statements. Since Amazon S3 Select filters a subset of data, it will help to reduce the data transfer cost and latency of an application. Amazon S3 select supports data stored in CSV, JSON, or Apache Parquet formats. Refer…
Amazon EventBridge Custom Event Bus Example
We can use the AWS EventBridge event bus to receive events from various event sources such as AWS services, custom applications, SasS applications, etc. To do that, AWS EventBridge provides two types of event buses such as default and custom. In this example, I will show you how we can use a custom event bus to receive events….
Automated Image Scanning with AWS CodePipeline & ECR
In this post, I am going to explain how we can scan docker images for vulnerabilities from a CI/CD pipeline. I use AWS CodePipeline to scan Docker images stored in AWS ECR. Refer to the original article that I published on https://duleendra.medium.com
AWS Lambda Event Filtering
Event Filtering AWS Lambda has provided a feature to filter events that come from Amazon SQS, Amazon Kinesis, and Amazon DynamoDB. With this feature, Lambda only sends the filtered events to the handler function. Refer to the original article that I published on https://duleendra.medium.com