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 aba344b commit f75fe70Copy full SHA for f75fe70
.github/workflows/deploy-account-wide-infra.yml
@@ -84,9 +84,10 @@ jobs:
84
- name: Terraform Plan
85
env:
86
ACCOUNT_NAME: ${{ vars.ACCOUNT_NAME }}
87
+ AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
88
run: |
89
terraform -chdir=terraform/account-wide-infrastructure/${ACCOUNT_NAME} plan \
- -var 'assume_account=AWS_ACCOUNT_ID' \
90
+ -var 'assume_account=${AWS_ACCOUNT_ID}' \
91
-var 'assume_role=terraform'
92
-out tfplan
93
@@ -143,7 +144,7 @@ jobs:
143
144
145
# - name: Terraform Apply
146
# env:
- # AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
147
+ # AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
148
# run: |
149
# terraform -chdir=terraform/account-wide-infrastructure apply tfplan \
150
# -var 'assume_account=AWS_ACCOUNT_ID' \
0 commit comments