From 397edf632ff942cac86654e95d629f6f817dde67 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 14 Jul 2026 23:33:50 -0700 Subject: [PATCH] fix: correct gitignore patterns for terraform state and cache Remove malformed line and clarify rules: - terraform/.terraform/ (local provider cache) - terraform/*.tfstate* (local state backups) - skills-lock.json (lock file) All TF state now remote (MinIO S3), local files safe to exclude. --- .gitignore | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index ad9978e..7bd047c 100644 --- a/.gitignore +++ b/.gitignore @@ -37,9 +37,11 @@ k8s/storage/test/test # Allowed markdown: CLAUDE.example.md, README.md, TROUBLESHOOTING.md CLAUDE.md -.terraform/ -skills-lock.jsonterraform/.terraform/ -terraform/*.tfstate* -terraform.tfvars.local -.tfstate \ No newline at end of file +# Terraform state and cache (local files, remote state in MinIO) +.terraform/ +terraform/.terraform/ +terraform/*.tfstate +terraform/*.tfstate.* +terraform.tfvars.local +skills-lock.json