reorder variables #38
Workflow file for this run
This file contains 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: "Module Test" | |
on: [push, pull_request] | |
permissions: read-all | |
jobs: | |
terraform-plan: | |
name: "Terraform Lint and Plan" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
- uses: terraform-docs/gh-actions@main | |
- uses: terraform-linters/setup-tflint@v3 | |
- name: Terraform Fmt | |
id: fmt | |
run: terraform fmt -no-color | |
- name: Terraform Init | |
id: init | |
run: terraform init | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate -no-color | |
- name: Terraform Plan | |
id: plan | |
run: terraform plan -no-color 2>&1 | |
- uses: bridgecrewio/checkov-action@v12 |