Terraform is an Infrastructure as Code (IaC) tool that enables you to provision and manage AWS infrastructure using a declarative configuration language (HCL - HashiCorp Configuration Language). A well-structured Terraform setup for provisioning AWS resources typically follows a modular, organized layout to promote reusability, maintainability, and scalability.
Here’s a high-level structure of a typical Terraform project to provision AWS infrastructure:
🔧 1. Directory Structure
🛠️ 2. Key Files Explained
main.tf
-
Defines AWS resources or calls reusable modules.
-
Example:
variables.tf
-
Defines inputs used across resources/modules.
outputs.tf
-
Defines values to export (e.g., VPC ID, public IP).
providers.tf
-
Sets up the AWS provider and optionally backend for state management.
terraform.tfvars
-
Provides real values for declared variables (not committed to Git ideally).
versions.tf
-
Locks Terraform and provider versions for consistency.
📦 3. Modules
Modules help you encapsulate related resources and reuse them.
Example: modules/vpc/main.tf
modules/vpc/variables.tf
modules/vpc/outputs.tf
🌱 4. Environments (Optional)
Use separate folders under envs/
to customize configurations for dev
, staging
, or prod
.
✅ 5. Best Practices
-
Use remote backend (like S3 + DynamoDB) for state file management.
-
Use
.tfvars
andterraform.workspace
for environment separation. -
Keep secrets in AWS Secrets Manager or use
sops
/Vault. -
Format and validate regularly:
terraform fmt
andterraform validate
. -
Use
terraform plan
beforeapply
.