Skip to content

Terraform

Medium — good to knowCI/CD & DevOps

ELI5 — The Vibe Check

Terraform is a tool that lets you describe your entire cloud infrastructure in code files, then type one command to make it real. Want 5 servers, a database, and a load balancer? Write it out, run terraform apply, and it builds everything. Run it again and it figures out only what needs to change.

Real Talk

Terraform is an open-source IaC tool by HashiCorp that uses a declarative configuration language (HCL) to provision infrastructure across cloud providers. It maintains a state file to track real-world resource status and computes a diff ('plan') before making changes.

Show Me The Code

terraform init      # Download providers
terraform plan      # Preview changes
terraform apply     # Apply changes
terraform destroy   # Tear everything down

When You'll Hear This

"Run terraform plan to see what will change before applying." / "The entire AWS infrastructure is defined in Terraform."

Made with passive-aggressive love by manoga.digital. Powered by Claude.