Skip to content

terraform apply

terraform apply #463

Workflow file for this run

name: Deployment
on:
pull_request:
branches:
- "feature/ingress-loadbalancer-fix"
push:
branches:
- "feature/ingress-loadbalancer-fix"
permissions:
id-token: write
contents: read
jobs:
deploy-development:
uses: ./.github/workflows/deployment_reusable_workflow.yml
with:
ENV: development
ENABLED: true
secrets: inherit
deploy-pre-production:
needs: [deploy-development]
uses: ./.github/workflows/deployment_reusable_workflow.yml
with:
ENV: pre-production
ENABLED: true
secrets: inherit
destroy-development:
needs: [ deploy-development, deploy-pre-production]
uses: ./.github/workflows/deployment_reusable_workflow.yml
with:
ENV: development
ENABLED: false
secrets: inherit
deploy-production:
needs: [deploy-development, deploy-pre-production]
uses: ./.github/workflows/deployment_reusable_workflow.yml
with:
ENV: production
ENABLED: true
secrets: inherit
destroy-pre-production:
needs: [ deploy-development, deploy-pre-production, deploy-production]
uses: ./.github/workflows/deployment_reusable_workflow.yml
with:
ENV: pre-production
ENABLED: false
secrets: inherit