Skip to content

Commit

Permalink
removing encryption configuration until it is supported by cloudfront
Browse files Browse the repository at this point in the history
  • Loading branch information
durkinza committed Dec 20, 2024
1 parent 7a2d96f commit 0b5344c
Show file tree
Hide file tree
Showing 7 changed files with 694 additions and 1,855 deletions.
8 changes: 4 additions & 4 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.173.1',
cdkVersion: '2.173.2',
minNodeVersion: '16.0.0',
workflowNodeVersion: 'latest',
defaultReleaseBranch: 'main',
Expand Down
222 changes: 137 additions & 85 deletions API.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 0 additions & 9 deletions src/lib/firewall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as ec2 from 'aws-cdk-lib/aws-ec2';
import { CfnFirewall, CfnFirewallProps } from 'aws-cdk-lib/aws-networkfirewall';
import * as core from 'aws-cdk-lib/core';
import { Construct } from 'constructs';
import { EncryptionConfiguration } from './encryption-configuration';
import {
ILogLocation,
S3LogLocationProps,
Expand Down Expand Up @@ -91,14 +90,6 @@ export interface FirewallProps {
*/
readonly deleteProtection?: boolean;

/**
* Not yet supported in Cloudformation at time of writing.
* You can use a customer managed key in AWS Key Management Service (KMS) to encrypt your data at rest.
* If you don’t configure a customer managed key, Network Firewall encrypts your data using an AWS managed key.
* @default - AWS managed key is used
*/
readonly encryptionConfiguration?: EncryptionConfiguration;

/**
* A setting indicating whether the firewall is protected against a change to the firewall policy association.
* Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use.
Expand Down
1 change: 0 additions & 1 deletion src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export * from './rule';
export * from './actions';
export * from './logging';
export * from './tls-inspection';
export * from './encryption-configuration';
2,304 changes: 550 additions & 1,754 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 0b5344c

Please sign in to comment.