Skip to content

Commit

Permalink
manual dns validation
Browse files Browse the repository at this point in the history
  • Loading branch information
tevko committed Feb 24, 2025
1 parent f1dc3a9 commit 4c6a8e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk/lib/cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ EOF`,
const hostedZone = route53.HostedZone.fromLookup(this, 'Zone', { domainName: 'pol.is' }); // Assuming 'pol.is' is the parent domain
const certificate = new acm.Certificate(this, 'Certificate', {
domainName: domainName, // e.g., awstest.pol.is
validation: acm.CertificateValidation.fromDns(hostedZone), // DNS validation
validation: acm.CertificateValidation.fromDns(),
});

const httpsListener = lb.addListener('HttpsListener', {
Expand Down

0 comments on commit 4c6a8e5

Please sign in to comment.