moto/tests/terraformtests/test-fixtures/lambda_invocation.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
140 B
JavaScript
Raw Normal View History

exports.handler = async (event) => {
if (process.env.TEST_DATA) {
event.key3 = process.env.TEST_DATA;
}
return event;
}