Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service. It is designed to give developers and businesses an extremely reliable and cost effective way to route end users to Internet applications by translating human readable names like www.example.com into the numeric IP addresses like 192.0.2.1 that computers use to connect to each other.
Questions tagged [amazon-route53]
2591 questions
19
votes
8 answers
Must use www for DNS entry using Amazon Route53
I administered my domain e.g www.abcd.com in Amazon Route53.
Everything works perfectly, except that when user type abcd.com without www, it won't get resolved. How can I make it get resolved?

iwan
- 7,269
- 18
- 48
- 66
19
votes
4 answers
aws_acm_certificate seems to have changed its state output possibly due to a provider update- am I doing this wrong?
Terraform v0.12.12
+ provider.aws v3.0.0
+ provider.template v2.1.2
Before I was doing this:
resource "aws_route53_record" "derps" {
name = aws_acm_certificate.mycert[0].resource_record_name
type =…

red888
- 27,709
- 55
- 204
- 392
19
votes
1 answer
Rate for operation ChangeResourceRecordSets exceeded
I am trying to delete record set in Route 53 console (web interface), but get this error:
Rate for operation ChangeResourceRecordSets exceeded
I tried deleting the record set via API, but I get the same error. Which limit have I exceeded?

Kirill Zhirnov
- 365
- 2
- 12
18
votes
2 answers
AWS S3 Redirect for Route53 not working for HTTPS
I am attempting to use AWS S3 Static Website Redirect to allow redirects from an Apex domain (example.com) to the www.example.com domain.
I used the following guide…

atomicfruitcake
- 345
- 1
- 3
- 14
18
votes
3 answers
How can I iterate through a map variable in terraform
Im trying to iterate through a variable type map and i'm not sure how to
This is what i have so far
In my main.tf:
resource "aws_route_53_record" "proxy_dns" {
count = "${length(var.account_name)}"
zone_id = "${infrastructure.zone_id}"
name =…

TheWalkingMalteser
- 561
- 1
- 9
- 25
18
votes
4 answers
Creating Route53 Record Sets via Shell Script
As a part of my shell script, I am trying to create record sets in AWS Route53. However, using variables in the aws cli within my shell script to create those records set, my variables exported in the Shell scripted are not being passed to the aws…

arfat619
- 321
- 1
- 3
- 9
18
votes
1 answer
CloudFront and API Gateway service on same domain
I want to:
Distribute the static part of the website (html, css, js) on my domain www.example.com.
Put API Gateway services on my domain under a folder, www.example.com/v1.
How do I accomplish this?
In route 53, from what I understand I can only…

Wrench
- 4,070
- 4
- 34
- 46
18
votes
1 answer
Amazon CLI, route 53, TXT error
I'm trying to create a TXT record in Route53 via the Amazon CLI for DNS-01 validation. Seems like I'm very close but possibly running into a CLI issue (or a formatting issue I don't see). As you can see, it's complaining about a value that should…

BRass
- 3,698
- 2
- 28
- 46
18
votes
2 answers
How can I test a new nameserver before updating the registrar records?
I have configured a set of DNS records at a new DNS provider. The configuration is complex, with load-balancing, SSL, etc, there are things that could go wrong.
I want to test this configuration before changing the namespace records at…

iHiD
- 2,450
- 20
- 32
17
votes
2 answers
AWS Route 53 problem DNS_PROBE_FINISHED_NXDOMAIN
On AWS we have 2 Elastic Beanstalk instances and one S3 bucket for a static website. Since app used Login With Amazon we added https protocol. Recently we moved a domain to Route 53, created SSL certificates and configured Load Balancers with https…

Alex Voitenko
- 291
- 1
- 2
- 8
17
votes
4 answers
Why are the value for Hosted Zone ID different for ELB and Route 53 Alias Target?
Here is my load balancer Sid-LB - the Hosted Zone ID is highlighted:
And this is the Route 53 (hosted zone id is highlighted) when I select the load balancer from Alias Target.
I dont understand why these two IDs have to be different. I tried to…

Siddharth
- 884
- 3
- 11
- 27
17
votes
2 answers
AWS Route 53 DNS propagation time
About 5 hours ago I have created a new Hosted Zone in AWS Route 53 service. The records look like as follows:
Hosted Zone domain.com
domain.com. A
domain.com. MX 1 ASPMX.L.GOOGLE.COM.
5 ALT1.ASPMX.L.GOOGLE.COM.
…

Maksim
- 1,007
- 2
- 8
- 6
16
votes
2 answers
"The specified key does not exist" for VueJS app deployed on deployed on S3 with CloudFront
I have deployed a VueJS app with S3 and CloudFront using Route53. It seemed like everything was working fine. I'm able to visit the site at https://my-domain.com, and I can navigate to different routes that I have set up with Vue router. However,…

briancaffey
- 2,339
- 6
- 34
- 62
16
votes
2 answers
AWS Lambda and S3 static file routing with custom domain
I have been trying to setup a simple Serverless App on AWS but am failing to understand how to put the pieces together with a custom domain.
The web app routes should looks something like this:
/ -> Serves static HTML / CSS / JS from S3…

Empty2k12
- 475
- 12
- 34
16
votes
3 answers
How to alias a domain name to an Elastic Beanstalk Environment using CloudFormation?
What is the correct Route 53 CloudFormation configuration to alias sub-domain names to an Elastic Beanstalk Environment ELBs?
I have copied the HostedZoneIds from the Amazon Route 53 Hosted Zone ID table to mappings:
"Beanstalk2Route53HostedZoneId"…

matsev
- 32,104
- 16
- 121
- 156