Questions tagged with Amazon Route 53
Content language: English
Sort by most recent
I built a POC using the Wordpress offering with Lightsail. As part of that, we migrated a domain name from Route 53 to Lightsail's DNS. The site was accessible via wordpress/lightsail. When the POC was complete, we decided not to move forward with Lightsail and deleted the instance.
The domain reappeared in AWS Route 53 with a SOA, and 4 NS records. If I run the "test record" feature in Route 53\hosted zone, I get "no error." Route 53 does not let you delete NS record so I am stuck with what is there.
If I query my domain NS via DnsChecker.org or MxToolBox, I get no response for NS or SOA. I can't get to my domain from the Internet. This has been two weeks or appox 14+ days. Any ideas?
My domain is through google workspace and I am trying to activate gmail. My name servers use AWS and that's why I have to use AWS console to propagate MX records for gmail. My records are correct according to google workspace technician so there is something wrong from AWS route 53. somebody please help me.
[Here is a link](https://ibb.co/YDhr3hC) to a screenshot of all the records in the hosted zone.
After adding a new CNAME record, the record [will not resolve](https://www.whatsmydns.net/#CNAME/outreach.charliehealth.com)
The new record:
* Record name: outreach
* Record type: CNAME
* Value: proxy-ssl.webflow.com
Is there some kind of cacheing/flushing I can do? Or A possible misconfiguration?
I have also tried created a new hosted zone (now deleted). So currently only have the main original hosted zone.
Hai,
I have purchased the domain from GoDaddy, I have deployed an application with that domain.
I just want to point that domain into static IP and that static IP i want to configure into juniper firewall.
When the juniper got down application should not impact.
Please suggest.
I tried route 53 to create a hosted zone.
I have successfully linked my app runner instance to the root my domain (mydomain.com) and everything is working fine .. However when I type www.mydomain.com I get a 404. How can I route traffic from www to mydomain?? I have tried creating an Alias record but its not working.
[Here is a link](https://ibb.co/YDhr3hC) to a screenshot of all the records in the hosted zone.
After adding a new CNAME record, the record [will not resolve](https://www.whatsmydns.net/#CNAME/outreach.charliehealth.com)
The new record:
* Record name: outreach
* Record type: CNAME
* Value: proxy-ssl.webflow.com
**NOTE**: I am only concerned with the CNAME record for **outreach**. I have been trying to get this subdomain to work for weeks now. The way I have added the record is exactly what webflow support has directed me to do.
I also noticed some other records that are set do not resolve. For example, `links`: [links.charliehealth.com](https://www.whatsmydns.net/#CNAME/links.charliehealth.com).
Meanwhile, `www` *does* [resolve](https://www.whatsmydns.net/#CNAME/www.charliehealth.com).
Is there some kind of cacheing/flushing I can do? Or A possible misconfiguration?
After adding a new CNAME record, the record [will not resolve](https://www.whatsmydns.net/#CNAME/outreach.charliehealth.com)
The new record:
* Record name: outreach
* Record type: CNAME
* Value: proxy-ssl.webflow.com
I also noticed some other records that are set do not resolve. For example, `links`: [links.charliehealth.com](https://www.whatsmydns.net/#CNAME/links.charliehealth.com).
Meanwhile, `www` *does* [resolve](https://www.whatsmydns.net/#CNAME/www.charliehealth.com).
Is there some kind of cacheing/flushing I can do? Or A possible misconfiguration?
[Here is a link](https://ibb.co/YDhr3hC) to a screenshot of all the records in the hosted zone
NOTE: I am only concerned with the CNAME record for **outreach**. I have been trying to get this subdomain to work for weeks now. The way I have added the record is exactly what webflow support has directed me to do.
I have registered a domain caunion-tech.com via Route 53. The hosted zone has a NS record with the below values:
ns-142.awsdns-17.com
ns-796.awsdns-35.net
ns-1477.awsdns-56.org
ns-1862.awsdns-40.co.uk
I tried many times but the MX, TXT, CNAM, SOA records could not be resolved at all. I have verified that the NS value is correct. It completely follows the details under "Registered domain" page. Grateful if someone can advise. Many thanks.
The domain name I applied for in godaddy is bound to AWS Global Accelerator. The endpoint of AWS Global Accelerator adds two ALBs in different regions. The ALB listens to the EC2 of the web server. When both of my web services fail, how should I set it up? Failover to a static maintenance page. The current idea is to add an A record through the R53 regional hosting to failover to the static website hosting of the S3 bucket of the same domain name, but it does not take effect and cannot jump to the S3 static page. How to set up to jump, Or is there a third party hosted maintenance page that fails over in some other way
How could I find out the four new name servers for our hosted zone on Route 53? Currently the old name servers can't find the hosted record via nslookup. And the hosted website is not responding on the Internet. Thank you.
I tried to write a step function which upsert a DNS A record on Route 53. However, the field TTL is not supported by step function:
```
"cause": "An error occurred while executing the state 'UpsertARecord' (entered at the event id #9). The Parameters '{\"HostedZoneId\":\"xxxxxxxxxxxxxxxxxxx\",\"ChangeBatch\":{\"Changes\":[{\"Action\":\"UPSERT\",\"ResourceRecordSet\":{\"Name\":\"xxx.yyy.domain.\",\"Type\":\"A\",\"ResourceRecords\":[{\"Value\":\"10.0.0.36\"}],\"TTL\":300}}]}}' could not be used to start the Task: [The field \"TTL\" is not supported by Step Functions]"
```
However, this field seems to be required by the API ChangeResourceRecordSets.
```
"cause": "Invalid request: Expected exactly one of [AliasTarget, all of [TTL, and ResourceRecords], or TrafficPolicyInstanceId], but found none in Change with [Action=UPSERT, Name=xxx.yyy.domain., Type=A, SetIdentifier=null] (Service: Route53, Status Code: 400, Request ID: d5ae58b1-e5bf-4365-a9b4-991c3736eabc)"
```
It is the state involved:
```
"UpsertARecord": {
"Type": "Task",
"Resource": "arn:aws:states:::aws-sdk:route53:changeResourceRecordSets",
"Parameters": {
"HostedZoneId": "xxxxxxxxxxxxxxxxxxx",
"ChangeBatch": {
"Changes": [
{
"Action": "UPSERT",
"ResourceRecordSet": {
"Name": "xxx.yyy.domain.",
"Type": "A",
"TTL.$": "$.TTL.TTL",
"ResourceRecords": [
{
"Value.$": "$.InstanceDetail.Reservations[0].Instances[0].PrivateIpAddress"
}
]
}
}
]
}
},
"ResultPath": "$.ChangeInfo",
"Next": "CheckStatus"
},
```
Besides using a Lambda function instead, are there any alternatives if I want to keep using Step Function?
I am suddenly unable to access the AWS server-based website.
I also checked Router53 and LoadBalancing and DOMAIIN.
It seems that there is no problem, but 'DNS_PROBE_FINISHED_NXDOMAIN' error is coming out. What could be the problem?