I'm in the middle of moving DNS for a personal domain from a legacy hosting provider to AWS Route 53.
Old SOA record on the old hosting provider's DNS:
serial = 121040502
refresh = 10800 (3 hours)
retry = 3600 (1 hour)
expire = 604800 (7 days)
default TTL = 3600 (1 hour)
As it's created on AWS for the hosted zone:
serial = 1
refresh = 7200 (2 hours)
retry = 900 (15 mins)
expire = 1209600 (14 days)
default TTL = 86400 (1 day)
As you can see, serial on AWS is 1
vs 121040502
on the old DNS.
Should I alter the SOA record on AWS such that "serial" is higher than the previous server?