Day 09: HCL (HashiCorp Configuration Language) — The Terraform Syntax Guide I Wish I Had.
Terraform uses HCL—a clean, declarative language—to describe infrastructure. Once you understand HCL’s building blocks, every Terraform repo starts to make sense.
HCL at a glance
Blocks: TYPE "LABEL" "LABEL" { ... }
Arguments: key = value
Expressi...