-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: Changing stateful rule default order. Adding TLS Inspection. (#…
…156) * break: changing stateful rule default order. Adding TLS Inspection L2. Adding encryption configuration template (not available in cloudformation yet). * feat!: Updating test with new default rule order * removing encryption configuration until it is supported by cloudfront * removing comment from test * Fixing jsii versions
- Loading branch information
Showing
22 changed files
with
1,642 additions
and
1,840 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.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
author: 'durkinza', | ||
authorAddress: '[email protected]', | ||
bugsUrl: 'https://github.com/durkinza/cdk-networkfirewall-l2/issues', | ||
cdkVersion: '2.90.0', | ||
cdkVersion: '2.173.2', | ||
minNodeVersion: '16.0.0', | ||
workflowNodeVersion: 'latest', | ||
defaultReleaseBranch: 'main', | ||
|
@@ -38,11 +38,13 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
'typescript', | ||
], /* Build dependencies for this module. */ | ||
homepage: 'https://github.com/durkinza/cdk-networkfirewall-l2#readme', | ||
jsiiVersion: '~5.7.0', | ||
jsiiVersion: '*', | ||
keywords: [ | ||
'cdk', | ||
'aws-cdk', | ||
'networkfirewall', | ||
'aws-networkfirewall', | ||
'AWS::NetworkFirewall', | ||
'aws', | ||
'awscdk', | ||
'L2', | ||
|
@@ -52,6 +54,7 @@ const project = new awscdk.AwsCdkConstructLibrary({ | |
'Security', | ||
], | ||
license: 'Apache-2.0', | ||
//majorVersion: 0, | ||
name: '@durkinza/cdk-networkfirewall-l2', | ||
npmAccess: javascript.NpmAccess.PUBLIC, | ||
npmignore: ['.devcontainer'], | ||
|
@@ -72,6 +75,10 @@ new CSpell(project, { | |
cSpellOptions: { | ||
language: 'en-US', | ||
ignorePaths: ['./API.md'], | ||
words: [ | ||
'projenrc', | ||
'ITLS', | ||
], | ||
}, | ||
}); | ||
new Husky(project); | ||
|
Oops, something went wrong.