When working with AWS, knowing which service to choose for which workload is the real deal. Today, let’s talk about S3 and EFS, which one to choose? Amazon S3 or Simple Storage Service is like a...
In this tutorial, I will show you how to set up Docker containers for Python projects with Boto3 and bind mounts. Let’s have fun. Scenario A Python development team is looking to simplify their setup...
AWS CloudShell is a browser-based shell that makes it easier to securely manage, explore, and interact with your AWS resources. AWS CloudShell is a handy tool from Amazon Web Services (AWS) that...
A palindrome is a word, phrase, or sequence that reads the same backward as forward, ignoring spaces, punctuation, and capitalization. Examples include “madam,” “racecar”. In...
Elastic Beanstalk is a service for deploying and scaling web applications and services. Upload your code and Elastic Beanstalk automatically handles the deployment, from capacity provisioning, load...
The AWS SDK for Python provides Python APIs for each AWS service. Using the SDK, you can build Python applications that work with Amazon S3, Amazon EC2, Amazon DynamoDB, and more. ✏Imagine you’re...
AWS Lambda and API Gateway are two powerful tools that serve very different purposes, but work hand-in-hand to create seamless serverless applications. Let’s break it down with an analogy to make...
In this project I will install WordPress on Ubuntu 20.04. To complete that I will first install NGINX, then PHP, MySQL, and finally WordPress. Background NGINX is the fastest growing and most...
Kubernetes has become the go-to platform for container orchestration, helping organizations manage, scale, and deploy applications seamlessly. As someone who is still learning Kubernetes, I know how...
Terraform tests allow you to verify your module configurations without impacting your existing state or resources. Testing in Terraform is separate from the regular plan or apply workflows. Instead...
In this short lab, I will show you how to create an EKS Cluster properly using Terraform. Usually, I’d create a `main.tf` file and put all the resources needed to set up your EKS cluster in one place...
In this tutorial, I will show you how Boto3 can be used to directly interact with AWS resources from Python scripts. If you’re diving into AWS with Python, Boto3 is the go-to library. It’s the...