feat: initial helm for netbox dev instance #3
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: prod-checks | |
| "on": | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "deployment/prod/**" | |
| defaults: | |
| run: | |
| working-directory: "./deployment/prod/" | |
| jobs: | |
| terraform-docs: | |
| uses: broadinstitute/shared-workflows/.github/workflows/[email protected] | |
| with: | |
| working_directory: "./deployment/prod" | |
| linting: | |
| uses: broadinstitute/shared-workflows/.github/workflows/[email protected] | |
| with: | |
| working_directory: "./deployment/prod" | |
| validation: | |
| uses: broadinstitute/shared-workflows/.github/workflows/terraform-validate.yaml@hf_use_tfenv | |
| with: | |
| working_directory: "./deployment/prod" | |
| # NOTE: using tfsec because trivy tries to scan remote terraform modules and trivy-ignores | |
| # at root level do not work for remote terraform modules | |
| static_analysis: | |
| uses: broadinstitute/shared-workflows/.github/workflows/[email protected] | |
| secrets: | |
| wf_github_token: ${{ secrets.github_token }} | |
| with: | |
| working_directory: "./deployment/prod" | |
| run_tfsec: true | |
| run_trivy: false |