Skip to content

Commit

Permalink
chore(deps):upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Thon Becker committed May 20, 2023
1 parent 1cf1f7e commit d0effa9
Show file tree
Hide file tree
Showing 7 changed files with 490 additions and 431 deletions.
1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .projen/files.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions src/cdk-simplewebsite-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,9 @@ export class CreateCloudfrontSite extends Construct {
if (props.domain) subjectAlternativeNames.push(props.domain);
if (props.subDomain) subjectAlternativeNames.push(props.subDomain);

const websiteCert = new acm.DnsValidatedCertificate(this, 'WebsiteCert', {
const websiteCert = new acm.Certificate(this, 'WebsiteCert', {
domainName: props.hostedZone,
subjectAlternativeNames,
hostedZone: hostedZoneLookup,
region: 'us-east-1',
});

const websiteBucket = new s3.Bucket(scope, 'WebsiteBucket', {
Expand Down
894 changes: 475 additions & 419 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit d0effa9

Please sign in to comment.