-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
40 lines (38 loc) · 1.03 KB
/
.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
35
36
37
38
39
40
import { awscdk } from 'projen';
const cdkVersion = '2.127.0';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Stephen Sennett',
authorAddress: '[email protected]',
cdkVersion: cdkVersion,
defaultReleaseBranch: 'main',
jsiiVersion: '~5.2.0',
name: 'cdk-cloudfront-redirector',
projenrcTs: true,
repositoryUrl: 'https://github.com/ssennettau/CloudFrontRedirector-Construct.git',
description: 'CDK Construct to simplify using CloudFront to redirect entire domains or back-half stubs',
keywords: [
'cdk',
'cdk-construct',
],
license: 'MIT',
licensed: true,
gitignore: [
'.DS_Store', // Default Mac OS attribs
'.secrets', // For running GH Actions locally
'*-ksvdata.json', // KeyStoreValues for Path redirects
],
depsUpgrade: true,
depsUpgradeOptions: {
workflowOptions: {
labels: ['auto-approve, auto-merge'],
},
},
autoApproveUpgrades: true,
autoApproveOptions: {
allowedUsernames: [
'github-actions',
'ssennettau',
],
},
});
project.synth();