aboutsummaryrefslogtreecommitdiffstats
path: root/Terraform.gitignore
diff options
context:
space:
mode:
authorJosh Kodroff <jkodroff@users.noreply.github.com>2018-04-04 13:59:50 -0400
committerGitHub <noreply@github.com>2018-04-04 13:59:50 -0400
commit18bdb8848434d872279292c7e90e99fe192169bb (patch)
treeea24be0c395a16505d8e3b219bbb161bd10b8297 /Terraform.gitignore
parent07c730e1fccfe0f92b29e039ba149d20bfb332e7 (diff)
downloadgitignore-18bdb8848434d872279292c7e90e99fe192169bb.tar.gz
gitignore-18bdb8848434d872279292c7e90e99fe192169bb.zip
Remove tfvars files from Terraform.gitignore
`tfvars` files should not be gitignore-d as they are used to parameterize a Terraform root for multiple environments, e.g.: ```bash $ tree terraform/roots/vpc terraform/roots/vpc ├── env │   ├── production.tfvars │   ├── qa.tfvars │   └── staging.tfvars └── main.tf ``` There may be a use case where a particular `tfvars` file should be ignored, but there's no naming convention I'm aware of to easily designate such a file.
Diffstat (limited to 'Terraform.gitignore')
-rw-r--r--Terraform.gitignore3
1 files changed, 0 insertions, 3 deletions
diff --git a/Terraform.gitignore b/Terraform.gitignore
index 1fef4ab9..428217ad 100644
--- a/Terraform.gitignore
+++ b/Terraform.gitignore
@@ -4,6 +4,3 @@
# .tfstate files
*.tfstate
*.tfstate.*
-
-# .tfvars files
-*.tfvars