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 3c3aa77 commit 5f3cc39Copy full SHA for 5f3cc39
.github/workflows/terraform.yml
@@ -56,6 +56,15 @@ jobs:
56
terraform validate
57
terraform plan -input=false -no-color
58
59
+ - name: tflint
60
+ uses: reviewdog/action-tflint@master
61
+ with:
62
+ github_token: ${{ secrets.GITHUB }}
63
+ working_directory: ${{ matrix.directory }}
64
+ fail_on_error: 'true'
65
+ filter_mode: 'nofilter'
66
+ flags: '--module'
67
+
68
format:
69
name: Check code format
70
runs-on: ubuntu-latest
_example/versions.tf
@@ -1,6 +1,6 @@
1
# Terraform version
2
terraform {
3
- required_version = ">= 0.14.0"
+ required_version = ">= 0.14.11"
4
5
required_providers {
6
aws = {
0 commit comments