mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-01-19 05:49:14 +02:00
339c46a6ed
The default filter for terraform only checks for *.tf files, but there are quite few other terraform filetypes. The explanation for all of them can be found below (including link to documentation from Hashicorp at time of writing) - *.tf.json & *.tfvars.json is to capture the files written in JSON-based variant of the Terraform language - https://developer.hashicorp.com/terraform/language/files - *.tfvars is used to supply variables - https://developer.hashicorp.com/terraform/cloud-docs/workspaces/variables#6-auto-tfvars-variable-files - .terraform.lock.hcl is used as a Dependency lock file - https://developer.hashicorp.com/terraform/language/files/dependency-lock - terraform.rc & .terraformrc, *.tfrc - https://developer.hashicorp.com/terraform/cli/config/config-file PR #2412