From 774543da47647fff65f6b541b65344b764ddb148 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Sat, 22 Aug 2026 18:30:28 -0700 Subject: [PATCH] Fix stale provider binary name in .gitignore The rebrand renamed the Terraform provider binary to terraform-provider-cairnobs (terraform/main.go, and the build command in terraform/README.md), but .gitignore still listed the old terraform-provider-sentry. The pattern no longer matched, so a locally built provider binary would have shown up as untracked and could have been committed by a `git add -A`. Verified by building the provider and confirming git check-ignore now matches it. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d433ed3..39bf301 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ search/target/ /ingest/ingest /api/api /cli/cairnobsctl -/terraform/terraform-provider-sentry +/terraform/terraform-provider-cairnobs /alerting/alerting /hack/windows-fixture/windows-fixture /hack/benchmark-fixture/benchmark-fixture