commented out the corsham test bastion module as it is not currently being used after doing a review/investigation. If the resource is required again in the future it can be commented back in within the corsham test bastion root module #294
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: Terraform static code analysis | |
on: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "*-GHTEST" | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
terraform-static-analysis: | |
name: Terraform Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Analysis | |
uses: ministryofjustice/github-actions/terraform-static-analysis@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
scan_type: full | |
checkov_external_modules: true |