Amazon Route 53
Overview
Real-life Use Cases
Terraform Example
resource "aws_route53_zone" "main" {
name = "example.com."
}
resource "aws_route53_record" "www" {
zone_id = aws_route53_zone.main.zone_id
name = "www"
type = "A"
ttl = 300
records = ["1.2.3.4"]
}AWS CLI Example
Best Practices
Common Pitfalls
Last updated