Make s3 bucket policy extend default ssl policy #163
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: Run Terraform Checks | |
on: | |
pull_request: | |
jobs: | |
terraform-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nationalarchives/tdr-github-actions/.github/actions/run-git-secrets@main | |
- uses: nationalarchives/tdr-github-actions/.github/actions/slack-send@main | |
if: failure() | |
with: | |
message: ":warning: Secrets found in repository da-terraform-modules" | |
slack-url: ${{ secrets.SLACK_WEBHOOK }} | |
- name: Terraform Format | |
id: fmt | |
run: terraform fmt -check --recursive |