Registry for container images
Project description
@cloudcomponents/cdk-container-registry
Registry for container images
Install
TypeScript/JavaScript:
npm i @cloudcomponents/cdk-container-registry
Python:
pip install cloudcomponents.cdk-container-registry
How to use
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from aws_cdk.core import Construct, Stack, StackProps
from aws_cdk.aws_sns import Topic
from aws_cdk.aws_sns_subscriptions import EmailSubscription
from cloudcomponents.cdk_container_registry import ImageRepository, Severity
class ImageRepositoryStack(Stack):
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None, analyticsReporting=None):
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection, analyticsReporting=analyticsReporting)
alarm_topic = Topic(self, "Topic")
alarm_topic.add_subscription(
EmailSubscription(process.env.DEVSECOPS_TEAM_EMAIL))
image_repository = ImageRepository(self, "ImageRepository", {
"force_delete": True, # Only for tests
"image_scan_on_push": True
})
image_repository.on_finding("finding",
severity=Severity.HIGH,
alarm_topic=alarm_topic
)
API Reference
See API.md.
Example
See more complete examples.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudcomponents.cdk-container-registry-1.37.0.tar.gz.
File metadata
- Download URL: cloudcomponents.cdk-container-registry-1.37.0.tar.gz
- Upload date:
- Size: 70.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7a478ebb52fe57b5eb3ab0cf2adc90e337daebba34de39648f6aacf85ae8718
|
|
| MD5 |
14654e110c0febd0dbd649a04dfabf34
|
|
| BLAKE2b-256 |
c2553e7002be78b2fb5c5a7badd41960dc7498fcbb97f94544f9a48481994484
|
File details
Details for the file cloudcomponents.cdk_container_registry-1.37.0-py3-none-any.whl.
File metadata
- Download URL: cloudcomponents.cdk_container_registry-1.37.0-py3-none-any.whl
- Upload date:
- Size: 69.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97a2684d469523dc66118c607f5d0f44667cb4ae4199556eb42639eef42b223
|
|
| MD5 |
ac2aaa79881f748dae11f63fe6772c1a
|
|
| BLAKE2b-256 |
8dd38becf7a7d2a9cc16cf783d9492be9f50cc0c419f180c0417e15ec0ce3eb8
|