Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
aripalo committed Oct 18, 2022
1 parent 9b205d5 commit 847e709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ const distribution = new cloudfront.Distribution(this, 'Distribution', {

certificate: domain.certificate, // reference to created ICertificate
domainNames: [domain.fqdn], // foobar.example.com
enableIpv6: domain.enableIpv6, // true by default (set disableIpV6 to true on init...) TODO FIX
enableIpv6: domain.enableIpv6, // true by default set enableIpv6 prop to false during new Domain()
})

// assign CloudFront distribution to given fqdn with A + AAAA records
domain.assign(new targets.CloudFrontTarget(distribution))
```


<br/>

### CloudFront helper

Expand Down

0 comments on commit 847e709

Please sign in to comment.