AWS CDK DNS Validated Certificate
CDK does not have a built in construct to manage cross-region or cross-account DNS validated certificates. There's an attempt to work around the issue with a cross region references option for stacks, but it has a lot of issues and still does not solve the cross-account use case.
This construct solves these problems by managing the certificate as a custom resource and with direct API calls to ACM and Route53. In the future it will be possible to support not only Route53, but other DNS services too.
Currently there's a limitation which does not allow using alternative names for the certificate as it would require mapping of different roles to different hosted zones. This API is currently being developed.
Usage for cross-region validation
const hostedZone: route53.IHostedZone = ...
const certificate = new DnsValidatedCertificate(this, 'CrossRegionCertificate', {
hostedZone: hostedZone,
domainName: 'example.com',
certificateRegion: 'us-east-1'
})
Usage for cross-account validation
const hostedZone: route53.IHostedZone = route53.HostedZone.fromHostedZoneAttributes(this, 'HostedZone', {
hostedZoneId: 'Z532DGDEDFS123456789',
zoneName: 'example.com',
})
const roleArn = 'arn:aws:iam::123456789:role/ChangeDnsRecordsRole'
const externalId = 'domain-assume'
const validationRole: iam.IRole = iam.Role.fromRoleArn(this, 'ValidationRole', roleArn)
const certificate = new DnsValidatedCertificate(this, 'CrossAccountCertificate', {
hostedZone: hostedZone,
domainName: 'example.com',
validationRole: validationRole,
validationExternalId: externalId,
})