Cloud DNS
In one sentence
What it is
Cloud DNS is a managed authoritative name service. You create zones representing domains you control and records inside them mapping names to addresses or other names.
It serves both directions of the problem: public zones answer queries from anyone on the internet, and private zones answer queries only from within networks you specify.
Why it matters
DNS is a single point of failure for everything. If name resolution stops working, it does not matter how healthy your servers are — nobody can reach them. It is also a common source of confusing incidents, because caching means changes propagate unevenly and a problem can appear to affect only some users.
In hybrid environments it becomes a genuine design problem. Cloud resources need to resolve on-premises names, on-premises systems need to resolve cloud names, and the same name may need to resolve differently depending on who is asking.
Key concepts
- Public zone — authoritative for a domain on the internet.
- Private zone — resolvable only from VPC networks you authorise, for internal names that should not be public.
- Record types — A and AAAA map to addresses; CNAME aliases one name to another; MX routes mail; TXT holds verification and policy data; NS delegates a subdomain.
- TTL — how long resolvers may cache a record. Lower it in advance of a planned change, then raise it again afterwards.
- Forwarding zone — sends queries for a domain to specific name servers, typically on-premises resolvers.
- DNS peering — lets one VPC use another VPC's private zones, so a shared network can centralise resolution.
- DNSSEC — cryptographically signs responses so resolvers can verify they were not tampered with.
Split-horizon resolution
- 1A public zone for example.com returns the load balancer's public address
- 2A private zone for the same name is authorised for your internal VPC
- 3A query from the internet reaches the public zone and receives the public address
- 4A query from inside the VPC matches the private zone first and receives an internal address
- 5Internal traffic stays on the private network without leaving it
Common use cases
- Hosting authoritative DNS for a company's public domains.
- Private zones giving internal services stable names instead of IP addresses.
- Forwarding zones so cloud workloads can resolve on-premises hostnames.
- Split-horizon so internal traffic to a public hostname stays on the private network.
- Lowering TTLs in advance of a migration to make cutover fast and reversible.
Certification relevance
Where this topic appears, and how deeply each exam goes into it. These are our own assessments based on published exam guides.
- Professional Cloud Network Engineer
Directly examined, including private zones, forwarding, peering and hybrid resolution design.
- Associate Cloud Engineer
Creating zones and records, and understanding how TTL affects propagation.
- Professional Cloud Architect
Appears in migration and hybrid connectivity scenarios, particularly around cutover planning.
Practice questions
Networking practice questions
9 original questions with full explanations.
Related Certifications
Related Cloud Topics
- Virtual Private Cloud (VPC)Your private network in the cloud: subnets, routes, firewall rules, peering and shared VPC.
- Load BalancingDistributing traffic across backends: the global versus regional and proxy versus pass-through decisions that drive every selection question.
- Content Delivery and Edge CachingServing content from locations close to users: cache keys, invalidation, and what should and should not be cached.