Merge pull request #1603 from CDCgov/1539-rse2e-cover-all-transformat… #941
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: CI/CD | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.md' | |
workflow_dispatch: | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/ci.yml | |
secrets: inherit | |
terraform-deploy: | |
name: Staging Infrastructure Deploy | |
needs: ci | |
uses: ./.github/workflows/terraform-deploy_reusable.yml | |
with: | |
ENVIRONMENT: stg | |
TERRAFORM_DIRECTORY: operations/environments/stg | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} | |
VPN_TLS_KEY: ${{ secrets.VPN_TLS_KEY }} | |
VPN_CA_CERTIFICATE: ${{ secrets.VPN_CA_CERTIFICATE }} | |
VPN_GITHUB_CERTIFICATE: ${{ secrets.VPN_GITHUB_CERTIFICATE}} | |
VPN_GITHUB_SECRET_KEY: ${{ secrets.VPN_GITHUB_SECRET_KEY }} | |
TERRAFORM_APPLY_PARAMETERS: -var="alert_slack_email=${{ secrets.NON_PROD_ALERT_SLACK_EMAIL }}" | |
staging-deploy: | |
name: Staging Application Deploy | |
needs: terraform-deploy | |
uses: ./.github/workflows/deploy_reusable.yml | |
with: | |
ENVIRONMENT: stg | |
REPO: trusted-intermediary-router | |
APP: ${{ needs.terraform-deploy.outputs.APP }} | |
REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CDC_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_CDC_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_CDC_DMZ_C1_SUBSCRIPTION_ID }} |