Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 21 additions & 7 deletions .projen/deps.json

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

4 changes: 2 additions & 2 deletions .projen/tasks.json

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

3 changes: 2 additions & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const project = new awscdk.AwsCdkConstructLibrary({
authorAddress: "https://www.mongodb.com/",
description:
"MongoDB Atlas CDK Construct Library for AWS CloudFormation Resources",
cdkVersion: "2.103.0",
cdkVersion: "2.189.1",
defaultReleaseBranch: "main",
name: "awscdk-resources-mongodbatlas",
repositoryUrl: "https://github.com/mongodb/awscdk-resources-mongodbatlas.git",
Expand Down Expand Up @@ -129,4 +129,5 @@ project.tasks.tryFind("docgen").updateStep(0, {
exec: "jsii-docgen -o API.md -r",
say: "Generating API.md, using -r to include readme content",
});
project.package.addDevDeps('eslint@^8'); // https://github.com/projen/projen/issues/3950
project.synth();
22 changes: 13 additions & 9 deletions package.json

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

18 changes: 18 additions & 0 deletions src/l1-resources/cluster/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,20 @@ export interface ProcessArgs {
*/
readonly minimumEnabledTlsProtocol?: string;

/**
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
*
* @schema processArgs#TlsCipherConfigMode
*/
readonly tlsCipherConfigMode?: string;

/**
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tls_cipher_config_mode` is set to `CUSTOM`.
*
* @schema processArgs#CustomOpensslCipherConfigTls12
*/
readonly customOpensslCipherConfigTls12?: string[];

/**
* Flag that indicates whether the cluster disables executing any query that requires a collection scan to return results.
*
Expand Down Expand Up @@ -289,6 +303,10 @@ export function toJson_ProcessArgs(
FailIndexKeyTooLong: obj.failIndexKeyTooLong,
JavascriptEnabled: obj.javascriptEnabled,
MinimumEnabledTLSProtocol: obj.minimumEnabledTlsProtocol,
TlsCipherConfigMode: obj.tlsCipherConfigMode,
CustomOpensslCipherConfigTls12: obj.customOpensslCipherConfigTls12?.map(
(y) => y
),
NoTableScan: obj.noTableScan,
OplogSizeMB: obj.oplogSizeMb,
SampleSizeBIConnector: obj.sampleSizeBiConnector,
Expand Down
Loading
Loading