Triggering ECS Tasks from AWS Lambda Using S3 Events (ECR-Based Workloads)Introduction In some scenarios, AWS Lambda alone is not enough: Execution time exceeds 15 minutes Heavy CPU or memory usage Long-running or batch-style jobs In such cases, a common and scalable pattern is: Use Lambda to trigger an ECS task This ...Jan 25, 2026·3 min read
🚀 Forget Ansible! Use AWS EC2 User Data for Easy Initial Setup 🚀Introduction When launching an AWS EC2 instance, you often need to configure it by installing packages, setting up environments, or running scripts. AWS provides a User Data feature that allows you to run scripts automatically when an instance boots ...Feb 5, 2025·3 min read
🚀 Setting Up a New Project? Here’s Your Complete Checklist! 🚀Being developers, we always wanted to start projects from scratch. When we get the opportunity, we keep thinking about where to start. In this article, I am collecting all the points that we want to remember while setting up the initial code setup. ...Jan 10, 2025·3 min read
Do You Prefer Docker Compose Over Docker CLI? Here’s Why You Should!Introduction: Do you prefer using Docker Compose over Docker CLI commands? If you’re working with multi-container applications, you’ve likely needed a more structured and manageable way to run, link, and configure containers. I prefer Docker Compose ...Nov 10, 2024·4 min read
🚀 Automate Linux Commands with `sudo -S` in Linux 🖥️In Linux environments, running commands with administrative privileges often requires using sudo. Typically, sudo prompts for a password interactively, but there are cases where you need to automate this process—especially in scripts or CI/CD pipelin...Oct 13, 2024·2 min read
🔐 Secure Multi-User Access to EC2 Instances Without Sharing Private Keys! 🚀When managing an Amazon EC2 instance, giving multiple users secure access without compromising security is a common challenge. Generally, access is provided by sharing a private key between users. However, sharing the same private key among multiple ...Oct 13, 2024·4 min read
Secure Way to Share S3 Objects: Using Pre-Signed URLs with Python (Boto3)Amazon S3 is a highly scalable and reliable storage service, but when it comes to sharing your stored objects securely, simply making them public isn't always the best approach. Fortunately, AWS offers secure methods for sharing objects from private ...Oct 5, 2024·7 min read