-
Notifications
You must be signed in to change notification settings - Fork 63
/
route53.txt
23 lines (16 loc) · 915 Bytes
/
route53.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Routing Policies:
- Simple
--- default routing policy when you create a new record set. Most commonly used when you have a single resource that performs a given function for your domain (e.g. one web server that serves content for violetfamily.com)
- Weighted
--- allows you to split your traffic based on different weights assigned
- Latency
--- allows you to route your traffic based on the lowest latency for your end user (region with fastest response time)
- Failover
--- used when you want to create an active/passive setup (e.g. use primary site in US-EAST-1 and secondary DR Site in US-WEST-1).
- Geolocation
Exam Notes:
- You can only resolve an ELB by going to it's DNS name
- ELB never has IPv4 address, only DNS names
- Understand difference between Alias Record and CName Record
- Given the choice, always choose Alias Record over a CName Record
- Understand routing policies and their use cases