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 8c0f242 commit 3c5d39bCopy full SHA for 3c5d39b
.github/workflows/persistent-environment.yml
@@ -110,7 +110,11 @@ jobs:
110
terraform -chdir=terraform/infrastructure workspace select ${{ inputs.environment }}
111
112
- name: Terraform Plan
113
- run: terraform -chdir=terraform/infrastructure plan --var-file=etc/dev.tfvars --var assume_role_arn=${{ secrets.DEPLOY_ROLE_ARN }} -out tfplan
+ run: |
114
+ terraform -chdir=terraform/infrastructure plan \
115
+ --var-file=etc/${{ github.env.ACCOUNT_NAME }}.tfvars \
116
+ --var assume_role_arn=${{ secrets.DEPLOY_ROLE_ARN }} \
117
+ -out tfplan
118
119
- name: Save Terraform Plan
120
run: |
0 commit comments