Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
- '**.tf'
- '**.tfvars'
- '.terraform.lock.hcl'
- '.tflint.hcl'
- 'tests/**'

# ==========================================================================
Expand Down
9 changes: 9 additions & 0 deletions .tflint.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ plugin "terraform" {
preset = "recommended"
version = "0.15.0"
source = "github.com/terraform-linters/tflint-ruleset-terraform"

# TEMPORARY (2026-07-17): pinned to PGP because the default "auto" mode
# crashes. GitHub removed the `bundle` field from attestation API responses,
# so tflint >=0.61 nil-derefs while verifying this plugin and never reaches
# the lint stage. Upstream fix: terraform-linters/tflint#2593 (unreleased).
# "pgp" still verifies the plugin cryptographically via the legacy signing
# key -- it is NOT "none", which would skip verification entirely.
# REVERT to the default (delete this line) once #2593 ships.
signature = "pgp"
}

rule "terraform_documented_variables" {
Expand Down
Loading