-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Oddly, this issue has popped up for me and googling doesn't surface any solutions.
{
"errorType": "SyntaxError",
"errorMessage": "Unexpected end of JSON input",
"trace": [
"SyntaxError: Unexpected end of JSON input",
" at JSON.parse ()",
" at Runtime.exports.handler (/var/task/WriteToGitHub.js:14:22)",
" at Runtime.handleOnceNonStreaming (/var/runtime/Runtime.js:74:25)"
]
}
Using this as a reference-->
Have tried to use with/without backslashes on both the github repo reference and the content.json reference in the SAM template.
github-repo/foo
github-repo/foo/
and
/frontend/content.json
frontend/content.json
Moreover, there is a space in the WriteToGitHub.js github key reference that I removed for my own repo. But no difference in error.
const singleParam = { Name: '/GitHubAPIKey ',WithDecryption: true }; --> const singleParam = { Name: '/GitHubAPIKey',WithDecryption: true };
The collection process works and there are numerous entries in the input before this lambda triggers.
Appreciate any trailheads.
TIA.