Browse Source

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.
pull/2650/head
Josh Kodroff 6 years ago
parent
commit
18bdb88484
No account linked to committer's email address
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      Terraform.gitignore

+ 0
- 3
Terraform.gitignore View File

@@ -4,6 +4,3 @@
# .tfstate files
*.tfstate
*.tfstate.*

# .tfvars files
*.tfvars

Loading…
Cancel
Save