Update main.tf #48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Terraform formatting | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| check_format: | |
| runs-on: ubuntu-latest | |
| name: Check Terraform file are formatted correctly | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: hashicorp/setup-terraform@v3 | |
| - name: Terraform fmt | |
| id: fmt | |
| run: terraform fmt -check -recursive |