Tag Archives: infrastructure as code

Your AWS Lambda Deployments Can Suddenly Stop — Here’s the Quota Nobody Talks About

By | December 31, 2025

AWS Lambda is widely loved for its simplicity, auto-scaling, and frictionless deployments. You deploy code, AWS handles the scaling, and everything “just works”. Beneath that convenience lies a largely unknown and rarely discussed limit that can suddenly bring your entire CI/CD pipeline to a halt: If your Lambda-heavy compute has a lot of functions deployed… Read More »

Building a Scalable Serverless REST API with Lambda, API Gateway

By | September 22, 2025

This blog provides a comprehensive overview of one of the most popular serverless architectural patterns on AWS: a REST API powered by API Gateway, AWS Lambda, and DynamoDB. This pattern is ideal for building scalable, cost-effective CRUD (Create, Read, Update, Delete) APIs without managing any servers. 1. Architecture Overview The flow is designed for high… Read More »

Introduction to IaC using SAM and CloudFormation

By | March 25, 2023

AWS Serverless Application Model (SAM) is a framework for building serverless applications on AWS. SAM provides a simplified way of defining the Amazon API Gateway APIs, AWS Lambda functions, and Amazon DynamoDB tables needed by your serverless application. SAM also provides a command-line interface (CLI) for deploying and managing your serverless application on AWS. In… Read More »