We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7adf28 commit a30ddccCopy full SHA for a30ddcc
.github/workflows/azure-create-app-registrations-using-terraform.yaml
@@ -51,10 +51,13 @@ jobs:
51
run: terraform init
52
53
- name: Terraform Plan
54
- run: terraform plan -var="app_registration_name=${{ inputs.app_registration_name }}" \
+ run: |
55
+ terraform plan \
56
+ -var="app_registration_name=${{ inputs.app_registration_name }}" \
57
-var="app_registration_owners=${{ inputs.app_registration_owners }}" \
58
-var="app_registration_description=${{ inputs.app_registration_description }}" \
- -var="app_registation_expiry=${{ inputs.app_registation_expiry }}" -out "plan.out"
59
+ -var="app_registation_expiry=${{ inputs.app_registation_expiry }}" \
60
+ -out "plan.out"
61
62
- name: Terraform show
63
run: terraform show "plan.out"
0 commit comments