Code Monkey home page Code Monkey logo

Comments (4)

crazy-max avatar crazy-max commented on May 30, 2024

@mhriemers Sure SGTM!

from ddns-route53.

mhriemers avatar mhriemers commented on May 30, 2024

Alright, what would be the best way to implement this in your opinion? Since the IPv4 and IPv6 addresses are gathered only once and reused for all records, I'm thinking about an extra configuration item on the root (such as Interface) or a command flag. WDYT?

from ddns-route53.

crazy-max avatar crazy-max commented on May 30, 2024

@mhriemers I think we can extend the configuration with a global section like:

global:
  interface: eth0

credentials:
  accessKeyID: "ABCDEFGHIJKLMNO123456"
  secretAccessKey: "abcdefgh123456IJKLMN+OPQRS7890+ABCDEFGH"

route53:
  hostedZoneID: "ABCEEFG123456789"
  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

You could then use:

ifaces, err := net.InterfaceByName(cfg.Global.Interface)
if err != nil {
	return err
}

addrs, err := ifaces.Addrs()
if err != nil {
	return err
}

// check each addr and retrieve first valid one?
// should exclude global unicast, multicast, loopback, etc.

In a follow-up we could also override the global interface for specific records.

from ddns-route53.

crazy-max avatar crazy-max commented on May 30, 2024

Fixed in #901

from ddns-route53.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.