Libdns: Core interfaces for universal DNS record manipulation across providers
1–7 of 7 posts
Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#2Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#3 WARNING: OctoDNS assumes ownership of any domain you point it to. When you tell it to act it will do whatever is necessary to try and match up states including deleting any unexpected records. Be careful when playing around with OctoDNS.
That makes it sound like a design failure, but Octodns and Dnscontrol are not the same type of tool. Those tools are declarative, and libdns is imperative.With Octodns you declare a state, and the tool makes whatever is needed to sync it. That's why it will delete any records that aren't declared in your configuration (you can configure it to ignore certain records, though). Hence, it's idempotent.
Libdns is imperative, you ask it to do certain task (be it creation, modification or deletion) regardless of the initial or final state.
So, both are useful, but for different tasks.
Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#4There's this note about Octodns and Dnscontrol that needs clearing: WARNING: OctoDNS assumes ownership of any domain you point it to. When you tell it to act it will do whatever is necessary to try and match up states including deleting any unexpected records. Be careful when playing around with OctoDNS. That makes it sound like a design failure, but Octodns and Dnscontrol are not the same type of tool. Those tools a…
> This is incredibly useful when you are maintaining your own zone file, but risky when you just need incremental changes.
But I agree including the warning is a bit over-the-top.
Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#5A cool idea now would be to make a little lightweight web GUI out of it to manage all your domains in one place...
Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#6There's this note about Octodns and Dnscontrol that needs clearing: WARNING: OctoDNS assumes ownership of any domain you point it to. When you tell it to act it will do whatever is necessary to try and match up states including deleting any unexpected records. Be careful when playing around with OctoDNS. That makes it sound like a design failure, but Octodns and Dnscontrol are not the same type of tool. Those tools a…
https://www.namecheap.com/support/api/methods/domains-dns/se...
Re: Libdns: Core interfaces for universal DNS record manipulation across providers
#7There's this note about Octodns and Dnscontrol that needs clearing: WARNING: OctoDNS assumes ownership of any domain you point it to. When you tell it to act it will do whatever is necessary to try and match up states including deleting any unexpected records. Be careful when playing around with OctoDNS. That makes it sound like a design failure, but Octodns and Dnscontrol are not the same type of tool. Those tools a…
Namecheap's API is like this. It's baffling. People wipe out their entire zones by accident https://www.namecheap.com/support/api/methods/domains-dns/se...
The declarative API is interesting, but it's weird there isn't any other method for imperatively adding or deleting records...