elegant-pager-5412
04/28/2021, 8:37 AMcallbackFactory
in order to define global scope and invocation scope for my Lambda. However, the end code inside the lambda is exports.handler = __f0();
, which means that I can’t have async code inside my global lambda scope. Is there any way to make Pulumi change the aforementioned statement to:
exports.handler = await __f0();