Skip to content

Commit 3a85850

Browse files
author
uid10804
committed
refactor: update release artifacts
1 parent 6045fc1 commit 3a85850

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

API.md

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/internal-service.ts

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -244,14 +244,17 @@ export class InternalService extends Construct {
244244
}
245245
);
246246

247-
const listener = this.applicationLoadBalancer.addListener(`Listener-${id}`, {
248-
port: 443,
249-
certificates: [certificate],
250-
sslPolicy:
251-
props?.loadBalancerListenerSSLPolicy ??
252-
elb.SslPolicy.FORWARD_SECRECY_TLS12_RES_GCM,
253-
open: false,
254-
});
247+
const listener = this.applicationLoadBalancer.addListener(
248+
`Listener-${id}`,
249+
{
250+
port: 443,
251+
certificates: [certificate],
252+
sslPolicy:
253+
props?.loadBalancerListenerSSLPolicy ??
254+
elb.SslPolicy.FORWARD_SECRECY_TLS12_RES_GCM,
255+
open: false,
256+
}
257+
);
255258

256259
listener.addTargetGroups(`TargetGroupAttachment-${id}`, {
257260
targetGroups: [targetGroup],

0 commit comments

Comments
 (0)