Questions tagged [amazon-route53]

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.

Docs

2591 questions
12
votes
3 answers

How to resolve error in AWS Route 53 - import zone file error : Multiple Distinct TTL values?

I am trying to import a zone file from Linode in to Amazon Route 53and I get the following error Error parsing zone file: One resource cannot have multiple distinct TTL values I know what it is trying to say, but I cannot find any where in the file…
user618886
  • 325
  • 6
  • 16
12
votes
1 answer

What's the best way to run a cross-region deployment on Heroku?

I'd like two use at least two Heroku regions - US and EU. The goal is to give each user the server closest to them. I know how to achieve this with AWS - Latency Based Routing. Is LBR limited to 'pure AWS', or can it easily be applied to Heroku or…
ripper234
  • 222,824
  • 274
  • 634
  • 905
12
votes
5 answers

How to redirect domain with prefix www in AWS Route 53

I have a problem with domain hosting in Route 53. I need to redirect from xyz.com to www.xyz.com, so I created a Hosted Zone on Route 53. I added an A record with the address of my ELB, and a CNAME with a name of www.xyz.com and value of my ELB…
mbdvg
  • 2,614
  • 3
  • 21
  • 39
11
votes
1 answer

Specify HostedZone NameServers as CloudFormation Outputs

I am creating a CFN stack for a number of domains. The domain are not with the AWS registry, but a third-party one. I want to have the list of nameservers from the SOA as part of the stack Outputs. However, as they aren't returned as a string but,…
Marakai
  • 1,163
  • 11
  • 26
11
votes
3 answers

How can you launch ECS Fargate containers having a public DNS?

I've built an AWS CodePipeline to build and deploy containers into Fargate managed EC2 instances. Ref AWS CodePipeline One of the services is a web server and I'm attempting to access it from the public which is possible via a public assigned IP…
11
votes
2 answers

Serving a multitude of static sites from a wildcard domain in AWS

I've got a pretty specific problem here, we've got a system that we already have and maintain, the system involves using subdomains to route people to specific apps. on a traditional server that goes like follows; we have a wildcard subdomain,…
Grant
  • 446
  • 6
  • 24
11
votes
1 answer

Deleted Route 53 hosted zone, can't correctly create it again

I have an Amazon EC2 instance on AWS associated with an ElasticIP. I purchased domain from Route 53. It automatically created the Hosted Zone. It worked fine after creating a Record Set for the domain name. I have deleted that Hosted Zone but when I…
Dawood Mujib
  • 337
  • 4
  • 14
11
votes
3 answers

How to create a subdomain Hosted Zone using Cloud Formation

I'd like to create a Route53 Hosted Zone for a subdomain and NS record to parent domain. Let's say I have: example.com and I want a hosted zone for subdomain: build.example.com Hosted Zone creation works: ClusterHostedZone: Type:…
Paweł Prażak
  • 3,091
  • 1
  • 27
  • 42
11
votes
1 answer

New domain is both registered with and hosted at AWS Route 53 but resolution fails

I have registered the domain duhastdiewahl.org at Amazon AWS Route 53. I do it step for step like this: http://share.pho.to/AAUSM Create Hosted Zone (NS/SOA-Record default) Add A-Record to my elastic ip adress for my EC2-Instance Unfortunately if…
Dude420
  • 113
  • 1
  • 4
11
votes
4 answers

How to fetch the AWS Route53 hosted zone id?

I am newbie to Amazon Services and their API. Using Amazon route53Clinet class, I know there is a method getHostedZone which get the Hosted Zone information on the basis of ID. But I have a case where I have the domain name and i need to fetch the…
Shaonline
  • 1,597
  • 6
  • 18
  • 36
10
votes
4 answers

Error creating cloudfront distribution with terraform. InvalidViewerCertificate

I'm trying to deploy a ReactJS project statically to s3 using Terraform My s3 bucket terraform config to create the bucket with the policy: resource "aws_s3_bucket" "site" { bucket = var.domain acl = "public-read" policy = <
10
votes
1 answer

AWS Route 53 with AWS API Gateway

Currently I have many AWS Lambda deployed already. And then I think of how to perform Performance Test for each of AWS Lambda. The solution I decided to go is - Expose each API using AWS Api Gateway for each AWS Lambda - Use JMeter (Neoload) to…
Nghia Do
  • 2,588
  • 2
  • 17
  • 31
10
votes
0 answers

AWS Route 53 weighted routing to two cloudfront distributions

Background: I have a Javascript hosted on S3 bucket with static website + Cloudfront distribution + Route 53 setup. I need Cloudfront because I need custom domain with SSL support. This works fine. As an example, the script can be accessed at…
David Lin
  • 13,168
  • 5
  • 46
  • 46
10
votes
4 answers

Amazon Route 53 Alias not working

For some reasons I am not able to set up my static website in S3. I am trying to resolve this from last 2 weeks but its not working for me. What I have done is: Uploaded files within S3 bucket. Set up routing policy - thats fine. Alias target…
KapilS
  • 149
  • 1
  • 2
  • 11
10
votes
3 answers

Amazon Route 53 setup and 301 Redirection setup

I've setup my site on Amazon EC2 server. I am using Route 53 and the servers DNS have already propagated correctly when I set them on Godaddy. I have a few problems. AT the end results I want to make 301 redirect from WWW to NON-www (from…