-
Notifications
You must be signed in to change notification settings - Fork 3
/
.projenrc.ts
34 lines (34 loc) · 867 Bytes
/
.projenrc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { awscdk } from 'projen';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'John Ferlito',
authorAddress: 'johnf@inodes.org',
cdkVersion: '2.82.0',
majorVersion: 1,
defaultReleaseBranch: 'main',
jsiiVersion: '~5.0.0',
name: 'cdk-cross-account-route53',
projenrcTs: true,
description: 'CDK Construct to allow creation of Route 53 records in a different account',
repositoryUrl: 'https://github.com/johnf/cdk-cross-account-route53.git',
keywords: [
'aws',
'aws-cdk',
'awscdk',
'cdk',
'route53',
'cross-account',
'role',
'records',
],
devDeps: [
'@aws-sdk/client-route-53',
'@aws-sdk/client-sts',
'@aws-sdk/credential-providers',
'@types/aws-lambda',
],
python: {
distName: 'cdk-cross-account-route53',
module: 'cdk_cross_account_route53',
},
});
project.synth();