mirror of
https://github.com/go-acme/lego.git
synced 2025-01-03 15:23:32 +02:00
httpreq: Allow use environment vars from a _FILE file (#1000)
This commit is contained in:
parent
635b9ac93d
commit
a8484e3954
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user