Gathering detailed insights and metrics for cdk-certbot-dns-route53
Gathering detailed insights and metrics for cdk-certbot-dns-route53
Gathering detailed insights and metrics for cdk-certbot-dns-route53
Gathering detailed insights and metrics for cdk-certbot-dns-route53
cdk-certbot-dns-route53 is a CDK construct library that allows you to create Certbot Lambda Function on AWS with CDK, and setting schedule cron job to renew certificate to store on S3 Bucket.
npm install cdk-certbot-dns-route53
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (72.87%)
Python (10.93%)
Shell (9.84%)
JavaScript (5.4%)
Dockerfile (0.95%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
14 Stars
1,425 Commits
2 Forks
2 Watchers
2 Branches
1 Contributors
Updated on Jul 15, 2025
Latest Version
2.4.542
Package Id
cdk-certbot-dns-route53@2.4.542
Unpacked Size
220.60 kB
Size
33.64 kB
File Count
26
NPM Version
10.2.3
Node Version
20.10.0
Published on
Jul 15, 2025
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
1
2
21
cdk-certbot-dns-route53 is a CDK construct library that allows you to create Certbot Lambda Function on AWS with CDK, and setting schedule cron job to renew certificate to store on S3 Bucket.
1Use the npm dist tag to opt in CDKv1 or CDKv2: 2 3// for CDKv2 4npm install cdk-certbot-dns-route53 5or 6npm install cdk-certbot-dns-route53@latest 7 8// for CDKv1 9npm install cdk-certbot-dns-route53@cdkv1
💡💡💡 please click here, if you are using aws-cdk v1.x.x version.💡💡💡
1import * as r53 from 'aws-cdk-lib/aws-route53';
2import * as s3 from 'aws-cdk-lib/aws-s3';
3import * as cdk from 'aws-cdk-lib';
4import { CertbotDnsRoute53Job } from 'cdk-certbot-dns-route53';
5
6const devEnv = {
7 account: process.env.CDK_DEFAULT_ACCOUNT,
8 region: process.env.CDK_DEFAULT_REGION,
9};
10
11const app = new cdk.App();
12
13const stack = new cdk.Stack(app, 'lambda-certbot-dev', { env: devEnv });
14
15new CertbotDnsRoute53Job(stack, 'Demo', {
16 certbotOptions: {
17 domainName: '*.example.com',
18 email: 'user@example.com',
19 },
20 zone: r53.HostedZone.fromHostedZoneAttributes(stack, 'myZone', {
21 zoneName: 'example.com',
22 hostedZoneId: 'mockId',
23 }),
24 destinationBucket: s3.Bucket.fromBucketName(stack, 'myBucket', 'mybucket'),
25});
1import * as r53 from 'aws-cdk-lib/aws-route53';
2import * as s3 from 'aws-cdk-lib/aws-s3';
3import * as lambda from 'aws-cdk-lib/aws-lambda';
4import * as cdk from 'aws-cdk-lib';
5import { CertbotDnsRoute53Job } from 'cdk-certbot-dns-route53';
6
7const mockApp = new cdk.App();
8const stack = new cdk.Stack(mockApp, 'teststack', { env: devEnv });
9const bucket = new s3.Bucket(stack, 'testingBucket');
10const zone = r53.HostedZone.fromHostedZoneAttributes(stack, 'zone', {
11 zoneName: mock.zoneName, hostedZoneId: mock.zoneId,
12});
13new CertbotDnsRoute53Job(stack, 'Testtask', {
14 certbotOptions: {
15 domainName: 'example.com',
16 email: 'user@example.com',
17 customPrefixDirectory: '/',
18 },
19 zone,
20 destinationBucket: bucket,
21 schedule: events.Schedule.cron({ month: '2' }),
22 architecture: lambda.Architecture.ARM_64, // <- like this way.
23});
24
Support enabled Lambda Function Url.
1import * as r53 from 'aws-cdk-lib/aws-route53';
2import * as s3 from 'aws-cdk-lib/aws-s3';
3import * as lambda from 'aws-cdk-lib/aws-lambda';
4import * as cdk from 'aws-cdk-lib';
5import { CertbotDnsRoute53JobPython } from 'cdk-certbot-dns-route53';
6
7const mockApp = new cdk.App();
8const stack = new cdk.Stack(mockApp, 'teststack', { env: devEnv });
9const bucket = new s3.Bucket(stack, 'testingBucket');
10const zone = r53.HostedZone.fromHostedZoneAttributes(stack, 'zone', {
11 zoneName: mock.zoneName, hostedZoneId: mock.zoneId,
12});
13new CertbotDnsRoute53JobPython(stack, 'Testtask', {
14 certbotOptions: {
15 domainName: 'example.com',
16 email: 'user@example.com',
17 customPrefixDirectory: '/',
18 },
19 zone,
20 destinationBucket: bucket,
21 schedule: events.Schedule.cron({ month: '2' }),
22 enabledLambdaFunctionUrl: true,
23});
24
No vulnerabilities found.
Reason
all changesets reviewed
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
14 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