We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552222a commit b91cfccCopy full SHA for b91cfcc
.github/workflows/main.yml
@@ -5,8 +5,14 @@ on:
5
workflow_dispatch:
6
7
jobs:
8
+ terraform-lint:
9
+ uses: ./.github/workflows/terraform-lint.yml
10
+ permissions:
11
+ contents: read
12
+ secrets: inherit
13
terraform-apply:
14
uses: ./.github/workflows/terraform-apply.yml
15
+ needs: terraform-lint
16
permissions:
17
contents: read
18
secrets: inherit
.github/workflows/terraform-lint.yml
@@ -18,4 +18,4 @@ jobs:
terraform_version: latest
19
20
- name: Format Terraform files
21
- run: terraform fmt -check
+ run: terraform fmt -check -recursive
0 commit comments