Skip to content

Commit

Permalink
Update ALB to use RECOMMENDED_TLS SslPolicy to remove TLS1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
  • Loading branch information
peterzhuamazon committed Feb 5, 2025
1 parent e22aee3 commit 56cf100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/network/ci-external-load-balancer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class JenkinsExternalLoadBalancer {
});

this.listener = this.loadBalancer.addListener('JenkinsListener', {
sslPolicy: props.useSsl ? SslPolicy.RECOMMENDED : undefined,
sslPolicy: props.useSsl ? SslPolicy.RECOMMENDED_TLS : undefined,
port: accessPort,
open: false,
certificates: props.useSsl ? [props.listenerCertificate] : undefined,
Expand Down

0 comments on commit 56cf100

Please sign in to comment.