-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from markussiebert/feat/cdk-v2-migration
feat(CDK): update to cdk v2
- Loading branch information
Showing
12 changed files
with
440 additions
and
1,066 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ const { awscdk } = require('projen'); | |
const project = new awscdk.AwsCdkConstructLibrary({ | ||
author: 'Markus Siebert', | ||
authorAddress: '[email protected]', | ||
cdkVersion: '1.0.0', | ||
cdkVersionPinning: false, | ||
cdkVersion: '2.1.0', | ||
keywords: [ | ||
'mozilla/sops', | ||
'sops', | ||
|
@@ -12,31 +11,13 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
'secrets management', | ||
'secrets', | ||
], | ||
cdkDependenciesAsDeps: false, | ||
defaultReleaseBranch: 'main', | ||
npmignoreEnabled: true, | ||
name: 'cdk-sops-secrets', | ||
repositoryUrl: 'https://github.com/markussiebert/cdk-sops-secrets.git', | ||
peerDeps: [ | ||
'@aws-cdk/aws-secretsmanager@^1.0.0', | ||
'@aws-cdk/aws-iam@^1.0.0', | ||
'@aws-cdk/aws-lambda@^1.0.0', | ||
'@aws-cdk/aws-logs@^1.0.0', | ||
'@aws-cdk/aws-s3-assets@^1.0.0', | ||
'@aws-cdk/aws-kms@^1.0.0', | ||
], | ||
// 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. */ | ||
devDeps: [ | ||
'@aws-cdk/aws-secretsmanager', | ||
'@aws-cdk/aws-iam', | ||
'@aws-cdk/aws-lambda', | ||
'@aws-cdk/aws-logs', | ||
'@aws-cdk/aws-s3-assets', | ||
'@aws-cdk/aws-kms', | ||
'@aws-cdk/assertions', | ||
], | ||
integrationTestAutoDiscover: true, | ||
prettier: true, | ||
prettierOptions: { | ||
|
Oops, something went wrong.