Use the Azure client ID as the username to the container registry #8
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: Deploy to Internal Environment | |
on: | |
push: | |
branches: | |
- internal | |
workflow_dispatch: | |
jobs: | |
terraform-deploy: | |
name: Internal Infrastructure Deploy | |
uses: ./.github/workflows/terraform-deploy_reusable.yml | |
with: | |
TERRAFORM_DIRECTORY: operations/environments/internal | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
internal-deploy: | |
name: Internal Application Deploy | |
needs: terraform-deploy | |
uses: ./.github/workflows/deploy_reusable.yml | |
with: | |
ENVIRONMENT: internal | |
REPO: trusted-intermediary-router | |
REPO_DOCS: trusted-intermediary-docs | |
APP: ${{ needs.terraform-deploy.outputs.APP }} | |
REGISTRY: ${{ needs.terraform-deploy.outputs.REGISTRY }} | |
secrets: | |
ACR_USERNAME: ${{ needs.terraform-deploy.outputs.ACR_USERNAME }} | |
ACR_PASSWORD: ${{ needs.terraform-deploy.outputs.ACR_PASSWORD }} | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} |