BBinereetDevopsinterraform-by-binereet.hashnode.dev·May 12, 2025 · 5 min read🚀 Complete Guide to EKS with Terraform: Add-ons, Nodes, VPCs, and MoreAmazon EKS is a managed Kubernetes service that lets you run Kubernetes clusters at scale on AWS. But doing it manually through the console? Tedious. That's where Terraform becomes your best friend. In this blog, we’ll cover: ✅ Setting up EKS with Te...00
BBinereetDevopsinterraform-by-binereet.hashnode.dev·Apr 27, 2025 · 5 min read🚀 Solving Terraform State Problems with S3 and DynamoDB — Full GuideWhen managing infrastructure as code (IaC) using Terraform, everything revolves around the state file (terraform.tfstate).It keeps track of every resource Terraform manages. But as you scale your projects, the way you handle this state becomes critic...00
BBinereetDevopsinterraform-by-binereet.hashnode.dev·Apr 26, 2025 · 2 min read🚀 Launching Multiple EC2 Instances on AWS with Terraform (and Capturing Their IPs)When building cloud infrastructure, often you need not just one server, but multiple — say for load balancing, or building a cluster.With Terraform, this becomes super simple using the count meta-argument! Today, I'll walk you through: Spinning up m...00
BBinereetDevopsinterraform-by-binereet.hashnode.dev·Apr 24, 2025 · 2 min read🌩️ Mastering variables.tf in Terraform with Real ExamplesTerraform is a powerful Infrastructure as Code tool, and one of its superpowers lies in using variables to make configurations clean, reusable, and flexible. In this blog, we’ll dive into the variables.tf file in Terraform and walk through a real-wor...00
BBinereetDevopsinterraform-by-binereet.hashnode.dev·Apr 23, 2025 · 2 min read🔐 How to SSH into an EC2 Instance Created by TerraformIn this guide, we'll learn how to securely SSH into an EC2 instance provisioned using Terraform. The process includes generating SSH keys, uploading the public key to AWS, and connecting to the instance using the private key. ✅ Step 1: Generate an S...00