We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7401f07 commit 2b8125aCopy full SHA for 2b8125a
1 file changed
.github/workflows/terraform-example.yml
@@ -23,5 +23,6 @@ jobs:
23
uses: terraform-linters/setup-tflint@v4
24
- name: TFLint (core rules only)
25
run: |
26
- tflint --init || true
27
- tflint -c terraform-example/.tflint.hcl terraform-example
+ # TFLint >= 0.47 removed positional directory args; use --chdir
+ tflint --chdir terraform-example --init || true
28
+ tflint --chdir terraform-example -c .tflint.hcl
0 commit comments