From 9ae2db9dacc4e855b4f75dc7b3d37bd0ded265d2 Mon Sep 17 00:00:00 2001 From: Paul Meinhardt Date: Mon, 2 Sep 2024 13:00:06 +0200 Subject: [PATCH] Avoid redundant domain name entry Previously, the first domain name was passed to the `DnsValidatedCertificate` construct twice. In the `domainName` prop and again in the `subjectAlternativeNames`. --- packages/cdk-static-website/src/static-website.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cdk-static-website/src/static-website.ts b/packages/cdk-static-website/src/static-website.ts index e5f31c7c..d68ff1b6 100644 --- a/packages/cdk-static-website/src/static-website.ts +++ b/packages/cdk-static-website/src/static-website.ts @@ -367,7 +367,7 @@ export class StaticWebsite extends Construct { return new aws_certificatemanager.DnsValidatedCertificate(this, 'Certificate', { domainName: domainNames[0], - subjectAlternativeNames: domainNames, + subjectAlternativeNames: domainNames.slice(1), hostedZone, region: 'us-east-1', });