OracleCloud: ttl config and timeout (#812)

This commit is contained in:
Sugi 2019-02-28 16:19:42 +09:00 committed by Ludovic Fernandez
parent 9f3daf38b6
commit 52eceeb8d2

View file

@ -90,7 +90,7 @@ func (d *DNSProvider) Present(domain, token, keyAuth string) error {
Domain: common.String(dns01.UnFqdn(fqdn)),
Rdata: common.String(value),
Rtype: common.String("TXT"),
Ttl: common.Int(30),
Ttl: common.Int(d.config.TTL),
IsProtected: common.Bool(false),
}
@ -167,3 +167,9 @@ func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
return nil
}
// Timeout returns the timeout and interval to use when checking for DNS propagation.
// Adjusting here to cope with spikes in propagation times.
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
return d.config.PropagationTimeout, d.config.PollingInterval
}