-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.projenrc.js
23 lines (23 loc) · 1000 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Ray Krueger',
authorAddress: '[email protected]',
cdkVersion: '2.74.0',
defaultReleaseBranch: 'main',
name: '@raykrueger/cdk-fargate-public-dns',
repositoryUrl: 'https://github.com/raykrueger/cdk-fargate-public-dns.git',
description: 'An AWS CDK module that listens for ECS Tasks to enter RUNNING state and then updates a Route 53 hosted zone with the public IP address attached to the task.',
releaseToNpm: true,
minNodeVersion: '18.20.3',
catalog: {
announce: false,
twitter: 'raykrueger',
},
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
devDeps: [
'@types/[email protected]',
], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();