Gathering detailed insights and metrics for cdk-ecr-image-scan-notify
Gathering detailed insights and metrics for cdk-ecr-image-scan-notify
Gathering detailed insights and metrics for cdk-ecr-image-scan-notify
Gathering detailed insights and metrics for cdk-ecr-image-scan-notify
cdk-ecr-image-scan-notify is an AWS CDK construct library that notify the slack channel of Amazon ECR image scan results.
npm install cdk-ecr-image-scan-notify
Typescript
Module System
Node Version
NPM Version
Python (53.78%)
TypeScript (33.01%)
JavaScript (13.21%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
28 Stars
943 Commits
7 Forks
2 Watchers
6 Branches
3 Contributors
Updated on Feb 23, 2024
Latest Version
1.0.242
Package Id
cdk-ecr-image-scan-notify@1.0.242
Unpacked Size
137.36 kB
Size
20.67 kB
File Count
14
NPM Version
6.14.18
Node Version
14.21.3
Published on
Apr 03, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
21
cdk-ecr-image-scan-notify is an AWS CDK construct library that notify the slack channel of Amazon ECR image scan results.
Amazon EventBridge (CloudWatch Events) detects the image scan execution and starts the Lambda function.
The Lambda function summarizes the scan results, formatting them and notifying Slack.
Basic scanning
Enhanced scanning (Support for initial scan only)
Click on an image name to go to the scan results page.
Installation
$ yarn add cdk-ecr-image-scan-notify
Usage
1import * as cdk from 'aws-cdk-lib';
2import { EcrImageScanNotify } from 'cdk-ecr-image-scan-notify';
3
4const mockApp = new cdk.App();
5const stack = new cdk.Stack(mockApp, '<your-stack-name>');
6
7new EcrImageScanNotify(stack, 'ecr-image-scan-notify', {
8 webhookUrl: '<your-incoming-webhook-url>',
9});
Deploy!
$ cdk deploy
Installation
$ pip install cdk-ecr-image-scan-notify
Usage
1import aws_cdk as cdk
2from cdk_ecr_image_scan_notify import EcrImageScanNotify
3
4app = cdk.App()
5stack = cdk.Stack(app, "<your-stack-name>", env={'region': 'ap-northeast-1'})
6
7EcrImageScanNotify(stack, "EcrImageScanNotify",
8 webhook_url = '<your-incoming-webhook-url>',
9)
Deploy!
$ cdk deploy
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 28/30 approved changesets -- score normalized to 9
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
dangerous workflow patterns detected
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
17 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More