Skip to content

Instantly share code, notes, and snippets.

@DV8FromTheWorld
Last active September 18, 2018 15:11
Show Gist options
  • Save DV8FromTheWorld/b6ec3429e60db493d4882961a25208bf to your computer and use it in GitHub Desktop.
Save DV8FromTheWorld/b6ec3429e60db493d4882961a25208bf to your computer and use it in GitHub Desktop.
Build Cloudformation Record
function build(buildArn, projectName, status = "SUCCEEDED") {
return JSON.stringify({
Records: [{
Sns: {
Message: JSON.stringify({
detail: {
"build-id": buildArn.trim(),
"project-name": projectName,
"build-status": status
}
})
}
}]
}, null, 2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment