-
Notifications
You must be signed in to change notification settings - Fork 1
/
.projenrc.js
72 lines (62 loc) · 1.83 KB
/
.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const { AwsCdkConstructLibrary, NpmAccess } = require('projen');
const RELEASE_STATUS = true;
const RELEASE_BRANCH = 'main';
const PRE_RELEASE = '';
const MAYOR_VERSION = 1;
const RELEASE_TO_NPM = true;
const AWS_CDK_VERSION = '1.125.0';
const project = new AwsCdkConstructLibrary({
name: 'cdk-organization-billing-alarm',
packageName: '@spacecomx/cdk-organization-billing-alarm',
description:
'Multi-account CDK construct to monitor estimated billing charges with alerts and notifications for a AWS Organization. It gives you the capability to monitor specific AWS Service charges, by a linked AWS account in a master/payer account',
author: 'Wayne Gibson',
authorAddress: '[email protected]',
repositoryUrl:
'https://github.com/spacecomx/cdk-organization-billing-alarm.git',
keywords: [
'aws',
'cdk',
'aws-constructs',
'constructs',
'aws-billing',
'billing',
'billing-alarm',
'aws-organizations',
'cloudwatch',
'aws-cloudwatch',
'cloudwatch-alarms',
'sns',
'spacecomx',
],
license: 'MIT',
copyrightOwner: 'Spacecomx LLC',
cdkVersion: AWS_CDK_VERSION,
cdkDependencies: [
'@aws-cdk/core',
'@aws-cdk/aws-sns',
'@aws-cdk/aws-secretsmanager',
],
deps: ['@spacecomx/cdk-billing-alarm'],
peerDeps: ['@spacecomx/cdk-billing-alarm'],
release: RELEASE_STATUS,
defaultReleaseBranch: RELEASE_BRANCH,
prerelease: PRE_RELEASE,
majorVersion: MAYOR_VERSION,
releaseToNpm: RELEASE_TO_NPM,
npmAccess: NpmAccess.PUBLIC,
publishToPypi: {
distName: 'spacecomx.cdk-organization-billing-alarm',
module: 'spacecomx.cdk_organization_billing-alarm',
},
});
const exclude = [
'cdk.out',
'cdk.context.json',
'yarn-error.log',
'dependabot.yml',
'.env',
];
project.gitignore.exclude(...exclude);
project.npmignore.exclude(...exclude);
project.synth();