[{"data":1,"prerenderedAt":209},["ShallowReactive",2],{"term-r\u002Froute-53":3,"related-r\u002Froute-53":186},{"id":4,"title":5,"acronym":6,"body":7,"category":165,"description":166,"difficulty":167,"extension":168,"letter":169,"meta":170,"navigation":171,"path":172,"related":173,"seo":180,"sitemap":181,"stem":184,"subcategory":6,"__hash__":185},"terms\u002Fterms\u002Fr\u002Froute-53.md","Route 53",null,{"type":8,"value":9,"toc":159},"minimark",[10,15,19,23,26,30,148,152,155],[11,12,14],"h2",{"id":13},"eli5-the-vibe-check","ELI5 — The Vibe Check",[16,17,18],"p",{},"Route 53 is Amazon's DNS service — it translates domain names like 'myapp.com' into IP addresses so browsers can find your server. Named after port 53 (the DNS port). It also does health checks and can automatically redirect traffic away from broken servers.",[11,20,22],{"id":21},"real-talk","Real Talk",[16,24,25],{},"Amazon Route 53 is a scalable, highly available DNS web service. It supports domain registration, DNS routing (simple, weighted, latency-based, geolocation, failover), health checks, and traffic management. It can route traffic to AWS resources or external endpoints.",[11,27,29],{"id":28},"show-me-the-code","Show Me The Code",[31,32,37],"pre",{"className":33,"code":34,"language":35,"meta":36,"style":36},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Create a DNS record pointing to a load balancer\naws route53 change-resource-record-sets \\\n  --hosted-zone-id Z123456 \\\n  --change-batch '{\n    \"Changes\": [{\n      \"Action\": \"CREATE\",\n      \"ResourceRecordSet\": {\n        \"Name\": \"api.myapp.com\",\n        \"Type\": \"A\",\n        \"AliasTarget\": { \"HostedZoneId\": \"Z...\", \"DNSName\": \"my-alb.amazonaws.com\", \"EvaluateTargetHealth\": true }\n      }\n    }]\n  }'\n","bash","",[38,39,40,49,67,78,91,97,103,109,115,121,127,133,139],"code",{"__ignoreMap":36},[41,42,45],"span",{"class":43,"line":44},"line",1,[41,46,48],{"class":47},"sHwdD","# Create a DNS record pointing to a load balancer\n",[41,50,52,56,60,63],{"class":43,"line":51},2,[41,53,55],{"class":54},"sBMFI","aws",[41,57,59],{"class":58},"sfazB"," route53",[41,61,62],{"class":58}," change-resource-record-sets",[41,64,66],{"class":65},"sTEyZ"," \\\n",[41,68,70,73,76],{"class":43,"line":69},3,[41,71,72],{"class":58},"  --hosted-zone-id",[41,74,75],{"class":58}," Z123456",[41,77,66],{"class":65},[41,79,81,84,88],{"class":43,"line":80},4,[41,82,83],{"class":58},"  --change-batch",[41,85,87],{"class":86},"sMK4o"," '",[41,89,90],{"class":58},"{\n",[41,92,94],{"class":43,"line":93},5,[41,95,96],{"class":58},"    \"Changes\": [{\n",[41,98,100],{"class":43,"line":99},6,[41,101,102],{"class":58},"      \"Action\": \"CREATE\",\n",[41,104,106],{"class":43,"line":105},7,[41,107,108],{"class":58},"      \"ResourceRecordSet\": {\n",[41,110,112],{"class":43,"line":111},8,[41,113,114],{"class":58},"        \"Name\": \"api.myapp.com\",\n",[41,116,118],{"class":43,"line":117},9,[41,119,120],{"class":58},"        \"Type\": \"A\",\n",[41,122,124],{"class":43,"line":123},10,[41,125,126],{"class":58},"        \"AliasTarget\": { \"HostedZoneId\": \"Z...\", \"DNSName\": \"my-alb.amazonaws.com\", \"EvaluateTargetHealth\": true }\n",[41,128,130],{"class":43,"line":129},11,[41,131,132],{"class":58},"      }\n",[41,134,136],{"class":43,"line":135},12,[41,137,138],{"class":58},"    }]\n",[41,140,142,145],{"class":43,"line":141},13,[41,143,144],{"class":58},"  }",[41,146,147],{"class":86},"'\n",[11,149,151],{"id":150},"when-youll-hear-this","When You'll Hear This",[16,153,154],{},"\"Update Route 53 to point the domain at the new load balancer.\" \u002F \"Route 53 health checks will failover to the backup region automatically.\"",[156,157,158],"style",{},"html pre.shiki code .sHwdD, html code.shiki .sHwdD{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":36,"searchDepth":51,"depth":51,"links":160},[161,162,163,164],{"id":13,"depth":51,"text":14},{"id":21,"depth":51,"text":22},{"id":28,"depth":51,"text":29},{"id":150,"depth":51,"text":151},"cloud","Route 53 is Amazon's DNS service — it translates domain names like 'myapp.com' into IP addresses so browsers can find your server.","intermediate","md","r",{},true,"\u002Fterms\u002Fr\u002Froute-53",[174,175,176,177,178,179],"AWS","DNS","CloudFront","Region","Latency","Load Balancer",{"title":5,"description":166},{"changefreq":182,"priority":183},"weekly",0.7,"terms\u002Fr\u002Froute-53","9AjwACPLCa1Js54AApfm88l0m8Z5yqm-J79HqpvPrL8",[187,192,195,200,203,206],{"title":174,"path":188,"acronym":189,"category":165,"difficulty":190,"description":191},"\u002Fterms\u002Fa\u002Faws","Amazon Web Services","beginner","AWS is like a giant magical warehouse where you can rent computers, storage, databases, and basically anything tech-related — by the minute.",{"title":176,"path":193,"acronym":6,"category":165,"difficulty":167,"description":194},"\u002Fterms\u002Fc\u002Fcloudfront","CloudFront is AWS's CDN — it copies your files to data centers all over the world so users get content from a server near them instead of one far away.",{"title":175,"path":196,"acronym":197,"category":198,"difficulty":190,"description":199},"\u002Fterms\u002Fd\u002Fdns","Domain Name System","networking","DNS is the internet's phonebook. You type 'google.",{"title":178,"path":201,"acronym":6,"category":198,"difficulty":190,"description":202},"\u002Fterms\u002Fl\u002Flatency","Latency is the delay before data starts moving — the time it takes for a request to go from your device to the server and back.",{"title":179,"path":204,"acronym":6,"category":198,"difficulty":167,"description":205},"\u002Fterms\u002Fl\u002Fload-balancer","A load balancer is like a traffic cop for servers.",{"title":177,"path":207,"acronym":6,"category":165,"difficulty":190,"description":208},"\u002Fterms\u002Fr\u002Fregion","A cloud region is a geographic area where a cloud provider has built clusters of data centers.",1776518308874]