This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// npm audit --json | node formatJson.js | |
const fs = require('fs'); | |
function findDependencyPath(json, moduleName) { | |
if (!json.vulnerabilities[moduleName].isDirect | |
&& json.vulnerabilities[moduleName].effects.length) { | |
return `${findDependencyPath(json, json.vulnerabilities[moduleName].effects[0])}>${moduleName}` | |
} | |
return moduleName; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create S3 Bucket | |
Create Kinesis Stream | |
Create Kinesis Firehose DeliveryStream | |
Connect to Kinesis Stream | |
Deliver to S3 Bucket | |
Process with timestream-transformer | |
s3-ftp-uploader (lambda): | |
events: using event bridge "Object Created" on above bucket | |
main: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NOTE: You also need to a service connection under project settings. | |
# Server Url: http://localhost:9000 | |
# Token: Anything (will be replaced further down) | |
# | |
# In <FIXME:uuid> below, add the uuid of the added service connection. | |
# There's also <Name>, <Org> and <Project> to be replaced. | |
# | |
# NOTE: A lot of things bearing when running this in a PR pipeline. | |
# Especially publishing and reporting. | |
# |