File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ jobs:
28
28
with :
29
29
aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
30
30
aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31
- aws-region : ${{ secrets .AWS_REGION }}
31
+ aws-region : ${{ vars .AWS_REGION }}
32
32
33
33
- name : Terraform Init
34
34
run : |
35
35
cd infra && terraform init \
36
- -backend-config="bucket=${{ secrets .TERRAFORM_S3_STATEFILE_BUCKET }}" \
36
+ -backend-config="bucket=${{ vars .TERRAFORM_S3_STATEFILE_BUCKET }}" \
37
37
-backend-config="key=${{ github.event.repository.name }}" \
38
38
-backend-config="region=${{ env.AWS_REGION }}" \
39
- -backend-config="dynamodb_table=${{ secrets .TERRAFORM_DYNAMODB_LOCK_TABLE }}"
39
+ -backend-config="dynamodb_table=${{ vars .TERRAFORM_DYNAMODB_LOCK_TABLE }}"
40
40
41
41
- name : Terraform Validate
42
42
run : terraform validate
You can’t perform that action at this time.
0 commit comments