diff --git a/.github/workflows/tfsec.yml b/.github/workflows/tfsec.yml new file mode 100644 index 0000000..be9a3fe --- /dev/null +++ b/.github/workflows/tfsec.yml @@ -0,0 +1,19 @@ +name: tfsec +on: + push: + branches: + - main + pull_request: +jobs: + tfsec: + name: tfsec + runs-on: ubuntu-latest + + steps: + - name: Clone repo + uses: actions/checkout@master + - name: tfsec + uses: aquasecurity/tfsec-action@v1.0.0 + with: + soft_fail: true + additional_args: --concise-output \ No newline at end of file