Skip to content

Commit 9cf9baa

Browse files
authored
feat(opensearchservice): TLS security policy for TLS 1.3 and perfect forward secrecy (#28583)
This PR supports new TLS security policy 'Policy-Min-TLS-1-2-PFS-2023-10' for TLS 1.3 and perfect forward secrecy. The description from [CLI reference](https://docs.aws.amazon.com/cli/latest/reference/opensearch/update-domain-config.html): > Policy-Min-TLS-1-2-PFS-2023-10: TLS security policy that supports TLS version 1.2 to TLS version 1.3 with perfect forward secrecy cipher suites - Release notes - https://aws.amazon.com/jp/about-aws/whats-new/2024/01/amazon-opensearch-service-tls-1-3-perfect-forward-secrecy/ - CloudFormation - https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-domainendpointoptions.html#cfn-opensearchservice-domain-domainendpointoptions-tlssecuritypolicy ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 178b845 commit 9cf9baa

File tree

1 file changed

+3
-1
lines changed
  • packages/aws-cdk-lib/aws-opensearchservice/lib

1 file changed

+3
-1
lines changed

packages/aws-cdk-lib/aws-opensearchservice/lib/domain.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,9 @@ export enum TLSSecurityPolicy {
281281
/** Cipher suite TLS 1.0 */
282282
TLS_1_0 = 'Policy-Min-TLS-1-0-2019-07',
283283
/** Cipher suite TLS 1.2 */
284-
TLS_1_2 = 'Policy-Min-TLS-1-2-2019-07'
284+
TLS_1_2 = 'Policy-Min-TLS-1-2-2019-07',
285+
/** Cipher suite TLS 1.2 to 1.3 with perfect forward secrecy (PFS) */
286+
TLS_1_2_PFS = 'Policy-Min-TLS-1-2-PFS-2023-10',
285287
}
286288

287289
/**

0 commit comments

Comments
 (0)