Blogs

AWS Lambda Best Practices

Now-a-days, any kind of computing tasks such as Real-time data processing, pre-process data for Machine learning models, Serverless back-ends (web, mobile, Internet of Things) can be done using AWS Lambda. While performing all above mentioned tasks, achieving scalability, higher performance and cost efficiency, and also not worrying about the underlying infrastructure, can be tiresome. But […]

AWS Lambda Best Practices Read More »

Terraform Modules: How to Build a Load-Balanced AWS Infrastructure

Add an Application Load Balancer to Your Scalable AWS Infrastructure In my [previous blog], we built a scalable AWS infrastructure using Terraform modules to provision a VPC, EC2 Auto Scaling Group, and S3 bucket. Now, let’s take it a step further by introducing an Application Load Balancer (ALB) to route incoming traffic to our EC2

Terraform Modules: How to Build a Load-Balanced AWS Infrastructure Read More »

Embracing Terraform: A Beginner’s Guide for AWS CloudFormation Veterans

What is terraform? Terraform is an open-source Infrastructure as Code (IaC) tool developed by HashiCorp. It allows you to define and provision infrastructure using a declarative configuration language. This means you can describe your desired infrastructure in code, and Terraform will take care of creating and managing the resources for you. Why I’m Shifting to

Embracing Terraform: A Beginner’s Guide for AWS CloudFormation Veterans Read More »

Terraform: Evolving my Infrastructure as Code Practice with Terraform

In my previous post, I documented getting started with Terraform coming from an AWS CloudFormation background. As I continue my Terraform learning journey from a CloudFormation background, two concepts that took more effort to grasp are variables and modules. Both offer powerful capabilities for customization and reusability — let’s break it down! What are Variables? Terraform variables provide a way to make

Terraform: Evolving my Infrastructure as Code Practice with Terraform Read More »

Scroll to Top