Route 53 configuration¶
hostedZoneID¶
AWS Route 53 hosted zone ID.
Config file
route53:
hostedZoneID: "ABCEEFG123456789"
Environment variables
DDNSR53_ROUTE53_HOSTEDZONEID
recordsSet¶
List of record sets.
route53:
recordsSet:
- name: "ddns.example.com."
type: "A"
ttl: 300
- name: "ddns.example.com."
type: "AAAA"
ttl: 300
- name: "another.example2.com."
type: "A"
ttl: 600
name¶
AWS Route 53 record set name.
Warning
Remember to end the record name with a trailing dot.
Config file
route53:
recordsSet:
- name: "ddns.example.com."
Environment variables
DDNSR53_ROUTE53_RECORDSSET_<KEY>_NAME
type¶
AWS Route 53 record set type. Can be A or AAAA.
Config file
route53:
recordsSet:
- name: "ddns.example.com."
type: A
Environment variables
DDNSR53_ROUTE53_RECORDSSET_<KEY>_TYPE
ttl¶
AWS Route 53 record TTL (time to live) in seconds.
Config file
route53:
recordsSet:
- name: "ddns.example.com."
ttl: 300
Environment variables
DDNSR53_ROUTE53_RECORDSSET_<KEY>_TTL