Skip to content

Commit

Permalink
wildcard-certificate: pass through includeParent
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbalfour committed Mar 26, 2024
1 parent 1fc74d0 commit 2ed0517
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ export class WildcardCertificate extends Construct {
const cr = new CustomResource(this, 'resource', {
serviceToken: provider.serviceToken,
properties: {
domainMappings: domains.map(({ domainName, roleArn, hostedZoneArn }) => ({
domainMappings: domains.map(({ domainName, roleArn, hostedZoneArn, includeParent }) => ({
parentDomainName: domainName,
hostedZoneId: Arn.extractResourceName(hostedZoneArn, 'hostedzone'),
roleArn,
includeParent,
})),
},
})
Expand Down

0 comments on commit 2ed0517

Please sign in to comment.