This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Fix drift for service.justice.gov.uk #240
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: Terraform plan | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "terraform/**" | |
jobs: | |
terraform-plan: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: arn:aws:iam::${{secrets.DSD_ACCOUNT_ID}}:role/TrustPolicy-OpsEngineering-Terraform | |
role-session-name: GitHubActions | |
aws-region: eu-west-2 | |
- name: terraform plan | |
run: | | |
cd terraform | |
terraform init | |
terraform plan | |
- name: Report failure to Slack | |
if: always() | |
uses: ravsamhq/notify-slack-action@v2 | |
with: | |
status: ${{ job.status }} | |
notify_when: 'failure' | |
notification_title: 'Failed GitHub Action Run' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |