From 75b56f524546580e201d2bb923cb08b68a3b7c9f Mon Sep 17 00:00:00 2001 From: Jon Chery Date: Tue, 28 Jul 2026 16:20:54 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20recursive=20.terraform=20gitignore=20?= =?UTF-8?q?=E2=80=94=20covers=20all=20module=20+=20platform=20dirs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced specific path entries (terraform/spike/, terraform/microservice/, modules/l1/*/terraform/) with recursive patterns: **/.terraform/ **/.terraform.lock.hcl **/tfplan **/*.tfstate* This catches .terraform dirs and lock files anywhere in the tree — including terraform/platform/, future L2 module terraform dirs, and any adapter-emitted working directory. No .terraform dirs were tracked (verified). ---ci--- project: acdl phase: P59 milestone: v1.11 status: execute ---/ci--- --- .gitignore | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 902d963..599cfef 100644 --- a/.gitignore +++ b/.gitignore @@ -10,13 +10,9 @@ audit.json runner-data/ .env.secrets terraform/bootstrap/.bootstrap_state.json -terraform/spike/.terraform/ -terraform/spike/.terraform.lock.hcl -terraform/spike/tfplan -terraform/spike/*.tfstate* -terraform/microservice/.terraform/ -terraform/microservice/.terraform.lock.hcl -terraform/microservice/tfplan -terraform/microservice/*.tfstate* -modules/l1/*/terraform/.terraform/ -modules/l1/*/terraform/.terraform.lock.hcl \ No newline at end of file + +# Terraform — recursively ignore .terraform dirs, lock files, plans, and state +**/.terraform/ +**/.terraform.lock.hcl +**/tfplan +**/*.tfstate* \ No newline at end of file