httpreq: Allow use environment vars from a _FILE file (#1000)

This commit is contained in:
Luis Gracia 2019-10-30 16:40:49 -04:00 committed by Ludovic Fernandez
parent 635b9ac93d
commit a8484e3954

View file

@ -9,7 +9,6 @@ import (
"io/ioutil"
"net/http"
"net/url"
"os"
"path"
"time"
@ -68,9 +67,9 @@ func NewDNSProvider() (*DNSProvider, error) {
}
config := NewDefaultConfig()
config.Mode = os.Getenv("HTTPREQ_MODE")
config.Username = os.Getenv("HTTPREQ_USERNAME")
config.Password = os.Getenv("HTTPREQ_PASSWORD")
config.Mode = env.GetOrFile("HTTPREQ_MODE")
config.Username = env.GetOrFile("HTTPREQ_USERNAME")
config.Password = env.GetOrFile("HTTPREQ_PASSWORD")
config.Endpoint = endpoint
return NewDNSProviderConfig(config)
}