_gandi.tpl 694 B

12345678910111213141516
  1. {{/* https://github.com/qdm12/ddns-updater/blob/master/docs/gandi.md */}}
  2. {{- define "ddns.config.gandi" -}}
  3. {{- $item := .item }}
  4. key: {{ $item.gandiKey | required "DDNS Updater - Expected non-empty [Key] for Gandi provider" }}
  5. ttl: {{ $item.gandiTtl | required "DDNS Updater - Expected non-empty [TTL] for Gandi provider" }}
  6. {{- end -}}
  7. {{/*
  8. ddnsConfig:
  9. config:
  10. - provider: gandi - Required
  11. domain: "example.com" - Required
  12. host: "@" - Required - Valid value ("@" or subdomain)
  13. ipVersion: "" - Required - Valid values (ipv4/ipv6/"")
  14. gandiKey: key - Required
  15. gandiTtl: 3600 - Required
  16. */}}