All skills
Skillintermediate
Minimal Terraform Project
This is a minimal Terraform project template.
Claude Code Knowledge Pack7/10/2026
Overview
Minimal Terraform Project
This is a minimal Terraform project template.
Structure
main.tf- Main resource definitionsvariables.tf- Input variable declarationsoutputs.tf- Output value declarationsversions.tf- Terraform and provider version constraintsterraform.tfvars.example- Example variable values
Usage
- Copy
terraform.tfvars.exampletoterraform.tfvarsand update with your values - Initialize Terraform:
terraform init - Review the plan:
terraform plan - Apply the configuration:
terraform apply
Adding Resources
Add your resource definitions to main.tf or create additional .tf files as needed.