Skip to content

Commit

Permalink
chore(gitignore): ignore dependency lockfile
Browse files Browse the repository at this point in the history
Terraform 0.14's new dependency lock file,
focused on providers, simplifies managing
Terraform automation. Starting in Terraform 0.13,
the possibility of installing providers from
customer-controlled or third-party remote
registries increases the need to be able to
replicate Terraform runs in automation.
These remote and automated Terraform workflows
need to be able to duplicate previous runs exactly.

This commit add .terraform.lock.hcl exclusion
in gitignore.
  • Loading branch information
diodonfrost committed Dec 4, 2020
1 parent a22e396 commit 41ba586
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.terraform
.terraform.lock.hcl
*.tfstate*
*.zip
terraform.tfstate.d
.tox
__pycache__
.pytest_cache
.coverage
.mypy_cache
.mypy_cache

0 comments on commit 41ba586

Please sign in to comment.