Seamless Zero-Downtime Deployments on AWS ECS Fargate with Terraform and CodePipelineJul 24, 2025·3 min read
Advanced Traffic Management in AKS: Implementing Canary Deployments with Open Service Mesh (OSM)Jun 2, 2025·4 min read
AWS Cost Monitoring & Budget Alert AutomationThis project automates AWS cost monitoring and alerting using a serverless architecture powered by: AWS Budgets (for tracking spending thresholds) AWS Lambda (for processing alerts and generating daily reports) Amazon SNS (for email alerts) Event...Jul 25, 2025·3 min read
How to use containers for Node.js developmentRequirements How to containerize a Node.js application Overview In this section, you’ll learn how to configure a development environment for your containerized application. This includes the following steps: Adding a local database and persisting ...May 20, 2025·4 min read
How to containerize a Node.js applicationGet the sample application To get started, clone the sample application provided for this guide. Open a terminal, navigate to your preferred working directory, and run the following command to clone the repository: git clone https://github.com/docker...May 18, 2025·1 min read
How to containerize an ApplicationINTRODUCTION Application containerization is a technology that packages an application along with its dependencies, libraries, and configuration files into a single, self-contained unit called a container. This container can run consistently across d...May 16, 2025·4 min read
Migrating SQL Server to Azure SQL Database with SQL Server Management Studio (SSMS)Introduction Databases from an on-premises SQL Server instance can be moved to an Azure SQL Database (offline) using SQL Server Management Studio (SSMS). We will learn how to use SQL Server Management Studio to move the sample AdventureWorksLT2022 da...May 15, 2025·3 min read
FinOps in Action: Programmatic Resource Scheduling with Azure Automation and PowerShellIntroduction Managing costs in Azure is a critical aspect of cloud governance. One of the most effective ways to reduce expenses is to ensure your Virtual Machines aren’t running when they don’t need to be. While Azure offers a basic auto-shutdown fe...May 12, 2025·8 min read
Scaling Infrastructure with count in TerraformIntroduction The count argument allows you to create multiple instances of a resource or module, using an incrementing index. It’s most effective when the resources are identical or very similar. In this tutorial, you'll use Terraform to provision a ...May 5, 2025·3 min read