File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,17 +44,17 @@ locals {
4444 # User-provided filepaths are expected to be relative to the root module.
4545 resolved_api_lambda_zip_filepath = (
4646 var. api_lambda . zip_filepath == null
47- ? " lambda/api/api.zip"
47+ ? " ${ path . module } / lambda/api/api.zip"
4848 : " ${ path . root } /${ var . api_lambda . zip_filepath } "
4949 )
5050 resolved_ingest_lambda_zip_filepath = (
5151 var. ingest_lambda . zip_filepath == null
52- ? " lambda/ingest/ingest.zip"
52+ ? " ${ path . module } / lambda/ingest/ingest.zip"
5353 : " ${ path . root } /${ var . ingest_lambda . zip_filepath } "
5454 )
5555 resolved_pre_hook_lambda_zip_filepath = (
5656 var. pre_hook_lambda . zip_filepath == null
57- ? " lambda/pre-hook/pre-hook.zip"
57+ ? " ${ path . module } / lambda/pre-hook/pre-hook.zip"
5858 : " ${ path . root } /${ var . pre_hook_lambda . zip_filepath } "
5959 )
6060}
You can’t perform that action at this time.
0 commit comments