From 554c9ae68e611981d3006700c61369c8d46214c9 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Thu, 22 Apr 2021 12:49:29 -0400 Subject: [PATCH] ROUTE53: Docs should specify FQDN with dot. (#1130) After helping with https://github.com/StackExchange/dnscontrol/issues/1128 I noticed that the examples don't include a "." at the end of FQDNs. Are these examples more correct? --- docs/_functions/domain/R53_ALIAS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_functions/domain/R53_ALIAS.md b/docs/_functions/domain/R53_ALIAS.md index 5c12b417d..b4fb92d91 100644 --- a/docs/_functions/domain/R53_ALIAS.md +++ b/docs/_functions/domain/R53_ALIAS.md @@ -38,9 +38,9 @@ The zone id can be found depending on the target type: D('example.com', REGISTRAR, DnsProvider('ROUTE53'), R53_ALIAS('foo', 'A', 'bar'), // record in same zone R53_ALIAS('foo', 'A', 'bar', R53_ZONE('Z35SXDOTRQ7X7K')), // record in same zone, zone specified - R53_ALIAS('foo', 'A', 'blahblah.elasticloadbalancing.us-west-1.amazonaws.com', R53_ZONE('Z368ELLRRE2KJ0')), // a classic ELB in us-west-1 - R53_ALIAS('foo', 'A', 'blahblah.elasticbeanstalk.us-west-2.amazonaws.com', R53_ZONE('Z38NKT9BP95V3O')), // an Elastic Beanstalk environment in us-west-2 - R53_ALIAS('foo', 'A', 'blahblah-bucket.s3-website-us-west-1.amazonaws.com', R53_ZONE('Z2F56UZL2M1ACD')), // a website S3 Bucket in us-west-1 + R53_ALIAS('foo', 'A', 'blahblah.elasticloadbalancing.us-west-1.amazonaws.com.', R53_ZONE('Z368ELLRRE2KJ0')), // a classic ELB in us-west-1 + R53_ALIAS('foo', 'A', 'blahblah.elasticbeanstalk.us-west-2.amazonaws.com.', R53_ZONE('Z38NKT9BP95V3O')), // an Elastic Beanstalk environment in us-west-2 + R53_ALIAS('foo', 'A', 'blahblah-bucket.s3-website-us-west-1.amazonaws.com.', R53_ZONE('Z2F56UZL2M1ACD')), // a website S3 Bucket in us-west-1 ); {%endhighlight%}