-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
23 lines (21 loc) · 941 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, ReleasableCommits } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Radek Antoniuk',
authorAddress: '[email protected]',
majorVersion: 1,
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
name: 'cloudwatch-retention-setter',
repositoryUrl: 'https://github.com/rantoniuk/cloudwatch-retention-setter.git',
description:
'Based on EventBridge rule, automatically set the logGroup retention policy when new AWS CloudWatch logGroup is created.',
// deps: [], /* Runtime dependencies of this module. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
publishToPypi: {
distName: 'rantoniuk.cloudwatch-retention-setter',
module: 'rantoniuk.cloudwatch_retention_setter',
},
releasableCommits: ReleasableCommits.featuresAndFixes(),
});
project.synth();