Skip to content

Commit

Permalink
"Added Terraform show step and modified Terraform Apply step in add_o…
Browse files Browse the repository at this point in the history
…wner_to_app_registration workflow"DEVOPS-70
  • Loading branch information
githubofkrishnadhas committed Jun 25, 2024
1 parent 63e354a commit 27396da
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/add_owner_to_app_registration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,14 @@ jobs:

- name: Terraform Plan
run: terraform plan -var="app_registration_name=${{ inputs.app_registration_name }}" -var="app_registration_owner=${{ inputs.app_registration_owner }}" -out "plan.out"


- name: Terraform show
run: terraform show "plan.out"

- name: Terraform Apply
run: terraform apply --auto-approve
run: |
ls -la
terraform apply --auto-approve "plan.out"
- name: Owners added for App registration
run:
Expand Down

0 comments on commit 27396da

Please sign in to comment.