add traina and trainb to loadbalancer in preprod plus prod redirect #610
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: corporate-staff-rostering | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'terraform/environments/corporate-staff-rostering/**' | |
- '.github/workflows/corporate-staff-rostering.yml' | |
pull_request: | |
branches: | |
- main | |
types: [opened, edited, reopened, synchronize] | |
paths: | |
- 'terraform/environments/corporate-staff-rostering/**' | |
- '.github/workflows/corporate-staff-rostering.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 }}" |