Skip to content

Commit 41ba586

Browse files
committed
chore(gitignore): ignore dependency lockfile
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.
1 parent a22e396 commit 41ba586

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.terraform
2+
.terraform.lock.hcl
23
*.tfstate*
34
*.zip
45
terraform.tfstate.d
56
.tox
67
__pycache__
78
.pytest_cache
89
.coverage
9-
.mypy_cache
10+
.mypy_cache

0 commit comments

Comments
 (0)