reorg alarms and add new ones for new email queues #3816
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: [pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
terraform-security-scan: | |
if: github.ref != 'refs/heads/main' | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Test with Checkov | |
id: checkov | |
uses: bridgecrewio/checkov-action@master | |
with: | |
directory: ./ | |
framework: terraform | |
soft_fail: true | |
quiet: true | |
download_external_modules: true | |
output_format: cli,sarif | |
output_file_path: console,results.sarif | |
config_file: ./aws/.checkov.yml | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: results.sarif |