Merge pull request #5181 from ministryofjustice/CC-2391/execute-scrip… #1717
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: ccms-ebs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'terraform/environments/ccms-ebs/**' | |
- '.github/workflows/ccms-ebs.yml' | |
pull_request: | |
branches: | |
- main | |
types: [opened, edited, reopened, synchronize] | |
paths: | |
- 'terraform/environments/ccms-ebs/**' | |
- '.github/workflows/ccms-ebs.yml' | |
workflow_dispatch: | |
inputs: | |
action: | |
description: 'Set either [deploy|destroy].' | |
default: 'deploy' | |
required: true | |
type: string | |
options: | |
- deploy | |
- destroy | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
strategy: | |
uses: ./.github/workflows/reusable_terraform_strategy.yml | |
if: inputs.action != 'destroy' | |
with: | |
application: "${{ github.workflow }}" | |
terraform: | |
needs: strategy | |
if: inputs.action != 'destroy' | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.strategy.outputs.matrix) }} | |
uses: ./.github/workflows/reusable_terraform_plan_apply.yml | |
with: | |
application: "${{ github.workflow }}" | |
environment: "${{ matrix.target }}" | |
action: "${{ matrix.action }}" | |
secrets: | |
modernisation_platform_environments: "${{ secrets.MODERNISATION_PLATFORM_ENVIRONMENTS }}" | |
pipeline_github_token: "${{ secrets.MODERNISATION_PLATFORM_CI_USER_ENVIRONMENTS_REPO_PAT }}" | |
destroy-development: | |
if: inputs.action == 'destroy' | |
uses: ./.github/workflows/reusable_terraform_plan_apply.yml | |
with: | |
application: "${{ github.workflow }}" | |
environment: "development" | |
action: "plan_apply" | |
plan_apply_tfargs: "-destroy" | |
secrets: | |
modernisation_platform_environments: "${{ secrets.MODERNISATION_PLATFORM_ENVIRONMENTS }}" | |
pipeline_github_token: "${{ secrets.MODERNISATION_PLATFORM_CI_USER_ENVIRONMENTS_REPO_PAT }}" |