wildcard * in ARecord recordName does not work
See original GitHub issuecdk 0.35.0
new route53.ARecord(this, "ARecordSubdomains", { recordName: "*", zone: hostedZone, target: route53.RecordTarget.fromAlias(new route53targets.CloudFrontTarget(cloudFrontDistribution)) });
Gives FATAL problem: DomainLabelEmpty (Domain label is empty) encountered with '*.domain.com.' (Service: AmazonRoute53; Status Code: 400; Error Code: InvalidInput; Request ID: 581858c8-9727-11e9-b5ad-9bb4ba65f088)
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
DNS wildcard not working - TechNet - Microsoft
Window 2003 R2 I have created a wild card dns record: * A ipAddress. This should resolve any host that is entered in...
Read more >How To Use AWS Route53 Wildcard Subdomains With CDK
This article explains how you can point multiple subdomains to the same frontend deployment. This will enable you to give each of your ......
Read more >DNS domain name format - Amazon Route 53
example.com, DNS treats it as an * character (ASCII 42), not as a wildcard. The * must replace the entire label. For example,...
Read more >[SOLVED] SRV Record with Wildcard Name - DNS
Solution: For what it's worth, wildcard SRV is not something I have ... I was hoping simply putting the SRV Record name as...
Read more >Route53 wildcard issue - dns
I am new to AWS Route53 and I got stuck in a problem and I cant really understand the issue. I have created...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
My workaround is a CfnRecordSetGroup:
Seems to be fixed by using the full record name (e.g. ‘subdomain.domain.com.’) instead of only subdomain. Still I think this is a bug, since only subdomain should also work according to CDK documentation.