Skip to content

Update hashicorp/aws requirement from ~> 5.70.0 to ~> 5.72.1 #298

Update hashicorp/aws requirement from ~> 5.70.0 to ~> 5.72.1

Update hashicorp/aws requirement from ~> 5.70.0 to ~> 5.72.1 #298

Workflow file for this run

name: tflint
on: [push]
jobs:
run-tflint:
runs-on: ubuntu-latest
strategy:
matrix:
tf_dir:
- modules/compliant-account
- modules/compliant-organization
- modules/ecr-repository
- modules/ecs-cluster
- modules/ecs-service
- modules/github-actions
- modules/global-config
- modules/regional-config
- modules/regional-config-data
- modules/s3-bucket
- modules/vpc
- tenants/app-workspace
- tenants/management
- tenants/test1
- tenants/test2
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: actions/cache@v4
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
key: tflint-${{ hashFiles('.tflint.hcl') }}
- name: Setup tflint
uses: terraform-linters/setup-tflint@v4
with:
tflint_version: v0.46.1
- name: Initialize tflint
run: |
cd ${{ matrix.tf_dir }} && tflint --init
- name: Run tflint
run: |
cd ${{ matrix.tf_dir }} && tflint -f compact