MLPAB-2027 create account level bucket for dynamodb exports (#1156) #382
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: "[Analysis] TFSec" | |
on: | |
push: | |
branches: [ main, master ] | |
paths: | |
- "**.tf" | |
schedule: | |
# 7am every wednesday | |
- cron: '0 7 * * 3' | |
permissions: | |
security-events: write | |
actions: read | |
checks: read | |
contents: none | |
deployments: none | |
issues: none | |
packages: none | |
repository-projects: none | |
statuses: none | |
jobs: | |
tfsec: | |
name: TFSec Static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Run tfsec | |
uses: tfsec/[email protected] | |
with: | |
sarif_file: tfsec.sarif | |
- name: Upload SARIF file | |
uses: github/codeql-action/[email protected] | |
with: | |
sarif_file: tfsec.sarif |