3.2 KiB
Collection of git hooks for Terraform to be used with pre-commit framework
How to install
Step 1
On MacOSX install the pre-commit package
brew install pre-commit
For other operating systems check the official documentation
Step 2
Step into the repository you want to have the pre-commit hooks installed and run:
cat <<EOF > .pre-commit-config.yaml
- repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.7.4
hooks:
- id: terraform_fmt
- id: terraform_docs
EOF
Step 3
Install the pre-commit hook
pre-commit install
Step 4
After pre-commit hook has been installed you can run it manually on all files in the repository
pre-commit run -a
Available Hooks
There are several pre-commit hooks to keep Terraform configurations (both *.tf and *.tfvars) in a good shape:
terraform_fmt- Rewrites all Terraform configuration files to a canonical format.terraform_validate_no_variables- Validates all Terraform configuration files without checking whether all required variables were set.terraform_validate_with_variables- Validates all Terraform configuration files and checks whether all required variables were specified.terraform_docs- Inserts input and output documentation intoREADME.md. Recommended.terraform_docs_without_aggregate_type_defaults- Inserts input and output documentation intoREADME.mdwithout aggregate type defaults.
Check the source file to know arguments used for each hook.
Notes about hooks
-
terraform_validate_no_variablesandterraform_validate_with_variableswill not work if variables are being set dynamically (eg, when using Terragrunt). Useterragrunt validatecommand instead. -
terraform_docsandterraform_docs_without_aggregate_type_defaultswill insert/update documentation generated by terraform-docs between markers -<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->and<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->if they are present inREADME.md. Make sure thatterraform-docsis installed. -
It is possible to pass additional arguments to shell scripts when using
terraform_docsandterraform_docs_without_aggregate_type_defaults. Send pull-request with the new hook if there is something missing.
Enjoy the clean and documented code!
Authors
This repository is managed by Anton Babenko with help from these awesome contributors.
License
MIT licensed. See LICENSE for full details.