Skip to content

Commit a30ddcc

Browse files
"Updated Terraform Plan step in Azure create app registrations workflow to use a multi-line command"
1 parent f7adf28 commit a30ddcc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/azure-create-app-registrations-using-terraform.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,13 @@ jobs:
5151
run: terraform init
5252

5353
- name: Terraform Plan
54-
run: terraform plan -var="app_registration_name=${{ inputs.app_registration_name }}" \
54+
run: |
55+
terraform plan \
56+
-var="app_registration_name=${{ inputs.app_registration_name }}" \
5557
-var="app_registration_owners=${{ inputs.app_registration_owners }}" \
5658
-var="app_registration_description=${{ inputs.app_registration_description }}" \
57-
-var="app_registation_expiry=${{ inputs.app_registation_expiry }}" -out "plan.out"
59+
-var="app_registation_expiry=${{ inputs.app_registation_expiry }}" \
60+
-out "plan.out"
5861
5962
- name: Terraform show
6063
run: terraform show "plan.out"

0 commit comments

Comments
 (0)