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
15
votes
3 answers

How do I get AWS Client VPN to resolve DNS using VPC-peered Private Hosted Zone

I have a VPC in my AWS account peered to a VPC of a partners account. The partner account has Route 53 resolvers to resolve DNS within domain.com to IPs in their peered VPC. I've associated my VPC with their private hosted zone. Within my VPC (for…
15
votes
2 answers

How to reduce the time it takes to refresh Terraform's state?

Most of the AWS infrastructure of the company I work for is described and managed using Terraform. We have several different services including containerized back-ends and CDN'ed front-ends. From Route53 domains and namespaces to ELBs, ECS and…
15
votes
1 answer

Creating a Route53 entry for RDS using Terraform

I am attempting to create a Route53 entry for a MySQL RDS instance but having issues with the :3306 at the end of the RDS endpoint returned from Terraform. resource "aws_db_instance" "mydb" { allocated_storage = 10 engine …
Cale
  • 313
  • 2
  • 3
  • 7
15
votes
3 answers

EC2/Route53: How Do I Point Apex Record at Load Balancer?

In Amazon, I am attempting to create a cname for a domain, example.com to a load balancer in Route 53 Examplecom-1058462749.us-west-2.elb.amazonaws.com But when I try to save the record, I get this error: RRSet of type CNAME with DNS name…
14
votes
2 answers

Configure Cloudflare to point to AWS Amplify

I use Cloudflare to generate SSL and AWS Amplify to host the project. I would like to configure Cloudflare to point to AWS Amplify project. These are the current DNS records, which points to the current server. This is the project URL and the URL…
Matt
  • 8,195
  • 31
  • 115
  • 225
14
votes
2 answers

What is the default TTL for a Route53 Alias record pointing to a Cloudfront resource?

I am converting a route53 CNAME recordset with 60 seconds ttl to an A recordset pointing to a cloudfront resource. The AWS documentation states: "If an alias record points to an AWS resource, you can't set the time to live (TTL); Route 53 uses the…
14
votes
2 answers

Multiple IP addresses for Resource Record Sets of Route 53

I'm studying aws route53, when I'm creating the resource record set, I can add multiple IP addresses to value of record set. What is the purpose of multiple IP addresses here? Ex: my domain will route to server 1 and server 2. I tried to stop…
Charles PHAM
  • 840
  • 3
  • 13
  • 25
13
votes
3 answers

AWS Cloudformation Get Hosted Zone Name from Hosted Zone ID

When taking a parameter of type AWS::Route53::HostedZone::Id is there a way to get the HostedZone name? The hosted zone already exists but was not created with Cloudformation so there is no way for me to reference the name from another…
jhnclvr
  • 9,137
  • 5
  • 50
  • 55
13
votes
2 answers

Understanding AWS API Gateway Custom Domain Names

I am struggling to understand how AWS API Gateway Custom Domain works. I have set up a Regional Custom Domain Name for my api, like api.example.com. The result is a Target Domain Name in the form…
Michel Feinstein
  • 13,416
  • 16
  • 91
  • 173
13
votes
2 answers

Multiple domain names attached to same load balancer as alias records?

I have hosted multiple domain names (example.com and example.net ) on same instance in my auto scaling group. Now I have attached this auto scaling group to a load balancer. Using Route 53 can I point two zone apex (such as example.com and…
Zeni
  • 947
  • 1
  • 12
  • 24
13
votes
1 answer

Redirect subdomain URL to URL subdirectory on Amazon AWS

We've created a subdomain via Route 53 on AWS that points to an external server. We now want to redirect that traffic back to the main domain, but to a subdirectory. shop.mydomain.com would redirect to mydomain.com/shop DNS doesn't like resolving…
sea26.2
  • 376
  • 1
  • 5
  • 23
12
votes
3 answers

Terraform with API-Gateway, Route53, and SSL Certification interdependency problem

I can't seem to get an SSL certificate from ACM working on API-Gateway, Route53, using terraform. There seems to be an interdependency problem. data "aws_route53_zone" "root_domain" { name = "${var.route53_root_domain_name}" private_zone…
12
votes
1 answer

Certbot-auto --manual plugin not working

I already generated certificates using certbot-auto with --manual plugin. Now the certbot version upgraded from 0.25.1 to 0.26.1, now i’m not able to use the --manual option as it says deprecated in the certbot 0.26.1. This is the command i used to…
Karan
  • 445
  • 5
  • 15
12
votes
4 answers

AWS: imported SSL certificate not showing up in CloudFront

I had imported a SSL certificate into AWS long time ago. It is currently installed on the ELB, and it is going to expire in 15 days. I am trying to get AWS to issue a new certificate but it is stuck waiting validation: Currently Route53 is pointing…
12
votes
3 answers

How to host multiple domains and subdomains on single AWS EC2 instance

I am trying to set up 2 domains (domain1.com and domain2.com) with a few subdomains (app.domain1.com) in AWS and run them on single instance (Amazon Linux, PHP, MySQL). I have set up 3 hosted zones in AWS Route53 with following…