AWS Systems Architect Professional

Registering a Domain with Amazon Route 53 – SAP-C02 Study Guide

Learn how to register a domain with Amazon Route 53, understand hosted zone creation, pricing, renewal, and key AWS DNS exam considerations.

AWS Systems Architect ProfessionalAWS Systems Architect ProfessionalUpdated Sep 1, 2026
Study options
WatchComing later
ListenComing later
ReadAvailable
ReviewComing later

Study guide

Technical reference and lesson notes

Purpose of This Lesson

This optional hands-on exercise demonstrates how to register a domain directly through Amazon Route 53. It also introduces the relationship between domain registration and DNS management in AWS.

Registering a domain incurs a cost, typically based on the selected top-level domain (TLD) and registration period. The exercise is useful when later labs require a domain name for DNS records, routing, or application testing.

Key Concepts

Route 53 provides more than DNS hosting

Amazon Route 53 includes several related capabilities:

  • Domain registration: Acquire and manage domain names through AWS.
  • DNS management: Host DNS zones and create records such as A, AAAA, CNAME, and MX records.
  • Traffic management: Apply routing policies to direct users to endpoints based on factors such as latency, geography, health, or weighted distribution.
  • Availability monitoring: Configure health checks that can be used with DNS routing decisions.

These capabilities are related but distinct. A domain registrar manages the ownership and registration of a domain, while a DNS hosting service manages the records that resolve that domain to resources.

Registering a domain in Route 53

The general workflow is:

  1. Open the Route 53 console.
  2. Select Registered domains.
  3. Search for an available domain name.
  4. Compare available TLDs and their prices.
  5. Select the desired domain and proceed to checkout.
  6. Choose the registration period and renewal preference.
  7. Provide registrant, administrative, and technical contact information.
  8. Enter billing details and complete the purchase.

Hosted zone creation

When a domain is registered through Route 53, AWS automatically creates a hosted zone for that domain. The hosted zone is the DNS container where records for the domain are managed.

The registration and hosted zone are not the same thing:

  • The registered domain is the name obtained from a registrar.
  • The hosted zone contains DNS records for that domain.

Route 53 commonly uses the hosted zone’s name servers to answer DNS queries for the domain. If a domain is registered elsewhere, it can still use a Route 53 hosted zone, but the domain’s registrar configuration must delegate DNS authority to the Route 53 name servers.

Alternative TLDs and pricing

A domain name may be available under multiple TLDs, such as .com, .org, or other alternatives. Pricing can vary significantly by TLD, even when the second-level domain is identical.

The checkout price generally reflects the selected registration period. A one-year registration and its renewal price should be reviewed separately, especially when deciding whether automatic renewal is appropriate.

Exam-Relevant Takeaways

  • Route 53 supports domain registration, DNS hosting, traffic management, and health checks.
  • Registering a domain through Route 53 automatically creates a hosted zone for that domain.
  • A domain registrar and a DNS hosting provider perform different functions, although Route 53 can provide both.
  • Domains registered with another provider can be transferred to Route 53 or can remain with that registrar while using Route 53 for DNS hosting.
  • Domain pricing depends on the TLD and registration term.
  • Renewal settings are operational and cost considerations; disabling auto-renewal can allow a domain to expire if it is not renewed manually.

Architecture Decision Guide

RequirementAppropriate Route 53 capabilityKey consideration
Acquire a new domain nameDomain registrationCheck TLD availability, pricing, and renewal terms
Manage DNS records for a domain registered in Route 53Public hosted zoneRegistration creates the hosted zone automatically
Manage DNS for a domain registered with another providerRoute 53 hosted zone plus registrar delegationUpdate the registrar’s name server delegation
Direct users between multiple endpointsRoute 53 routing policiesSelect a policy based on availability, latency, geography, or traffic distribution
Remove unhealthy endpoints from DNS responsesRoute 53 health checks with supported routing policiesHealth checks support DNS-based failover decisions; they do not replace application monitoring

Common Exam Traps

  • Confusing registration with DNS hosting: Owning a domain does not automatically mean that every DNS record is configured correctly. Registration and hosted-zone records are separate concerns.
  • Assuming Route 53 is only a DNS service: Route 53 also provides registrar, traffic management, and health-check capabilities.
  • Ignoring registrar delegation: A hosted zone does not serve authoritative DNS for an externally registered domain until the registrar points the domain to the correct Route 53 name servers.
  • Assuming all TLDs cost the same: Registration and renewal costs vary by TLD.
  • Overlooking renewal behavior: Auto-renewal affects both service continuity and cost. A domain allowed to expire can disrupt DNS-based application access.
  • Using a private hosted zone for public internet resolution: A publicly reachable domain normally requires a public hosted zone and appropriate registrar delegation. Private hosted zones are associated with VPCs.

Real-World Engineer Notes

  • Use a dedicated domain or subdomain for experiments rather than risking production DNS records.
  • Record the registration term, renewal date, account owner, and billing owner in operational documentation.
  • Decide whether automatic renewal is required before completing checkout. Production domains generally need a controlled renewal process to avoid accidental expiration.
  • Keep domain registration ownership separate from individual engineers where possible. Use an appropriately governed AWS account and controlled access.
  • Verify the hosted zone and name server configuration before troubleshooting application DNS. A correct record in the wrong or inactive hosted zone will not resolve publicly.
  • Domain registration is optional for many AWS labs, but it becomes useful when testing real DNS behavior, custom hostnames, certificate validation, or user-facing endpoints.

Quick Reference Summary

  • Route 53 registered domains: Acquire and manage domain names through AWS.
  • Hosted zone: DNS container holding records for a domain.
  • Public hosted zone: Answers DNS queries from the public internet when properly delegated.
  • Private hosted zone: Provides DNS resolution within associated VPCs.
  • Registration term: The period for which the domain is registered, commonly one year.
  • Auto-renewal: Automatically renews the registration if enabled and billing succeeds.
  • TLD: The suffix of a domain, such as .com or .link; pricing and availability differ by TLD.

Flashcards

1. What major capabilities does Route 53 provide?

Domain registration, DNS management, traffic management, and availability monitoring through health checks.

2. What happens when a domain is registered through Route 53?

Route 53 automatically creates a hosted zone for the domain.

3. What is the difference between a registered domain and a hosted zone?

The registered domain is the acquired name. The hosted zone is the DNS container where records for that name are managed.

4. Can a domain registered with another provider use Route 53 DNS?

Yes. Create or use a Route 53 hosted zone and delegate DNS authority to its name servers at the external registrar.

5. What determines the cost of a Route 53 domain registration?

The selected TLD and registration period are major factors. Renewal pricing may also differ from the initial registration price.

6. Why might an engineer register a domain for an AWS lab?

To test DNS records, custom application hostnames, routing behavior, certificate validation, or other features requiring a real domain.

7. What does auto-renewal control?

Whether Route 53 attempts to renew the domain automatically at the end of its registration term.

8. What must be configured for a Route 53 hosted zone to answer publicly for an externally registered domain?

The external registrar must delegate the domain to the name servers assigned to the Route 53 hosted zone.

Practice Questions

Question 1

A company registers example.com using a third-party registrar but wants Amazon Route 53 to host its public DNS records. What should the company do?

A. Create a private hosted zone and associate it with every VPC.
B. Create a public hosted zone in Route 53 and update the registrar delegation to use its name servers.
C. Transfer the domain to Route 53; external registration cannot use Route 53 DNS.
D. Create an Amazon CloudFront distribution with the domain as its origin.

Correct answer: B

A public Route 53 hosted zone can serve DNS for a domain registered elsewhere. The registrar must delegate the domain to the Route 53 name servers. A transfer is optional, not mandatory.

Question 2

An engineer registers a domain through Route 53 for a testing environment. Which result should the engineer expect immediately from the registration workflow?

A. An ACM certificate is automatically issued.
B. A public hosted zone is automatically created.
C. An Application Load Balancer is automatically provisioned.
D. DNS records for the application are automatically created.

Correct answer: B

Route 53 automatically creates a hosted zone when the domain is registered through the service. Application resources and application-specific DNS records still require separate configuration.

Question 3

A team is selecting between several available TLDs for a nonproduction domain. The .com option is significantly more expensive than an alternative TLD. Which statement is most accurate?

A. All TLDs have identical Route 53 pricing.
B. The TLD can affect availability and registration pricing.
C. The cheapest TLD cannot be used with Route 53 DNS routing policies.
D. TLD selection affects only the hosted-zone query charge, not registration cost.

Correct answer: B

TLDs can have different availability, registration, and renewal prices. The choice of TLD does not inherently prevent use of Route 53 DNS features.

Question 4

A production domain is approaching its expiration date. The organization wants to avoid an outage caused by accidental expiration. Which operational control is most appropriate?

A. Disable auto-renewal and rely on an engineer’s memory.
B. Enable auto-renewal, ensure billing is valid, and monitor renewal ownership and dates.
C. Move all DNS records into a private hosted zone.
D. Replace the domain with an IP address.

Correct answer: B

Production domains generally need a controlled renewal process. Auto-renewal, valid billing, ownership documentation, and monitoring reduce the risk of expiration and service disruption.