chore: remove forms-terraform-apply-release
OIDC role
#3198
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 security scan" | |
on: | |
push: | |
branches: [develop, main] | |
paths: | |
- "aws/**" | |
- ".github/workflows/terraform-security-scan.yml" | |
pull_request: | |
paths: | |
- "aws/**" | |
- ".github/workflows/terraform-security-scan.yml" | |
jobs: | |
terraform-security-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Checkov security scan | |
uses: bridgecrewio/checkov-action@097919de4f8058fb4478275f36e6708d12a9f53a # latest as of December 2023 | |
with: | |
directory: aws | |
framework: terraform | |
quiet: true | |
output_format: cli | |
soft_fail: false |