Taking out the cbs_principal_arn since it was deleted (#509) #435
This file contains hidden or 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: | |
| - main | |
| paths: | |
| - "terragrunt/aws/**" | |
| - ".github/workflows/terraform-security-scan.yml" | |
| pull_request: | |
| paths: | |
| - "terragrunt/aws/**" | |
| - ".github/workflows/terraform-security-scan.yml" | |
| jobs: | |
| terraform-security-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Checkov security scan | |
| uses: bridgecrewio/checkov-action@99bb2caf247dfd9f03cf984373bc6043d4e32ebf # tag=v12.1802.0 | |
| with: | |
| directory: terragrunt/aws | |
| framework: terraform | |
| output_format: cli | |
| soft_fail: false |