-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
25 lines (25 loc) · 929 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
24
25
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkTypeScriptApp({
cdkVersion: '1.163.1',
defaultReleaseBranch: 'main',
name: 'rasp4',
cdkDependencies: [
'@aws-cdk/aws-codepipeline',
'@aws-cdk/aws-codepipeline-actions',
'@aws-cdk/pipelines',
'@aws-cdk/aws-s3',
'@aws-cdk/aws-iam',
'@aws-cdk/aws-codedeploy',
],
deps: ['@mobileposse/auto-delete-bucket'],
context: {
'@aws-cdk/core:enableStackNameDuplicates': 'true',
'aws-cdk:enableDiffNoFail': 'true',
'@aws-cdk/core:newStyleStackSynthesis': true,
},
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();