From c2a47c7359aae114b035402d5468b1a68a260bcd Mon Sep 17 00:00:00 2001 From: diodonfrost Date: Sun, 20 Dec 2020 13:49:14 +0100 Subject: [PATCH] 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. --- .gitignore | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 20bc3cb..3234f99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,10 @@ .terraform +.terraform.lock.hcl *.tfstate* *.zip -.kitchen -Gemfile.lock terraform.tfstate.d .tox -.mypy_cache __pycache__ .pytest_cache -.coverage \ No newline at end of file +.coverage +.mypy_cache