Skip to content

Commit

Permalink
Added script to run image template build; Added dev box definition an…
Browse files Browse the repository at this point in the history
…d dex box pool resource
  • Loading branch information
Abby Artagame committed Nov 13, 2024
1 parent 63d31dd commit 7f813e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tf-plan-apply-destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ permissions:

#These environment variables are used by the terraform azure provider to setup OIDD authenticate.
env:
ARM_CLIENT_ID: "${{ secrets.AZURE_CLIENT_ID }}"
ARM_SUBSCRIPTION_ID: "${{ secrets.AZURE_SUBSCRIPTION_ID }}"
ARM_TENANT_ID: "${{ secrets.AZURE_TENANT_ID }}"
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}

jobs:
terraform-plan:
Expand Down Expand Up @@ -167,9 +167,9 @@ jobs:
- name: Azure CLI Login
uses: azure/login@v2
with:
client-id: $ARM_CLIENT_ID
tenant-id: $ARM_TENANT_ID
subscription-id: $ARM_SUBSCRIPTION_ID
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

# Terraform Apply
- name: Terraform Apply
Expand Down

0 comments on commit 7f813e2

Please sign in to comment.