Skip to content

Commit

Permalink
param fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispsheehan committed Mar 8, 2024
1 parent c8114e6 commit 254e224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
id: action
run: |
cd tf
terraform apply -auto-approve -var function-stage=${{ env.stage }} -var lambda-zip-path=${{ env.version_file }}
terraform apply -auto-approve -var function_stage=${{ env.stage }} -var lambda_zip_path=${{ env.version_file }}
echo "API_GATEWAY_URL=$(terraform output -raw api_gateway_url)" >> $GITHUB_OUTPUT
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ jobs:
id: action
run: |
cd tf
terraform destroy -auto-approve -var function-stage=${{ inputs.stage }} -var lambda-zip-path=this_file_doesnt_exist.zip
terraform destroy -auto-approve -var function_stage=${{ inputs.stage }} -var lambda_zip_path=this_file_doesnt_exist.zip

0 comments on commit 254e224

Please sign in to comment.