Skip to content

Commit

Permalink
set elbv2.SslPolicy.RECOMMENDED_TLS
Browse files Browse the repository at this point in the history
  • Loading branch information
awick committed Mar 27, 2024
1 parent a7f5820 commit 5b75989
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cdk-lib/viewer-stacks/viewer-nodes-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ export class ViewerNodesStack extends cdk.Stack {
const listener = lb.addListener('Listener', {
protocol: elbv2.ApplicationProtocol.HTTP,
port: 80,
open: true
open: true,
sslPolicy: elbv2.SslPolicy.RECOMMENDED_TLS,
});
listener.addTargets('TargetGroup', {
Expand Down

0 comments on commit 5b75989

Please sign in to comment.