Disable Postgres AAD rule and expand PSrule trigger #21
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: Validate AZD template | |
on: | |
push: | |
branches: | |
- main | |
- cruft/update | |
paths: | |
- "infra/**" | |
- "ps-rule.yaml" | |
pull_request: | |
branches: | |
- main | |
- cruft/update | |
paths: | |
- "infra/**" | |
- "ps-rule.yaml" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run PSRule analysis | |
uses: microsoft/[email protected] | |
with: | |
modules: PSRule.Rules.Azure | |
baseline: Azure.Pillar.Security | |
inputPath: infra/*.test.bicep | |
outputFormat: Sarif | |
outputPath: reports/ps-rule-results.sarif | |
summary: true | |
continue-on-error: true | |
env: | |
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION: 'true' | |
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION_TIMEOUT: '30' | |
- name: Upload alerts to Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
if: github.repository_owner == 'Azure-Samples' | |
with: | |
sarif_file: reports/ps-rule-results.sarif |