Unverified Commit 18bdb884 authored by Josh Kodroff's avatar Josh Kodroff Committed by GitHub

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.
parent 07c730e1
...@@ -4,6 +4,3 @@ ...@@ -4,6 +4,3 @@
# .tfstate files # .tfstate files
*.tfstate *.tfstate
*.tfstate.* *.tfstate.*
# .tfvars files
*.tfvars
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment