From 240828b27288e4f34c1fa9cfd8637dbfae9a9b27 Mon Sep 17 00:00:00 2001 From: Max Ehrlich Date: Fri, 3 Aug 2018 12:23:36 -0400 Subject: [PATCH] Read test host from env variable Signed-off-by: Max Ehrlich --- pkg/issuer/acme/dns/acmedns/acmedns_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/issuer/acme/dns/acmedns/acmedns_test.go b/pkg/issuer/acme/dns/acmedns/acmedns_test.go index cf8f2efa8..364bdda83 100644 --- a/pkg/issuer/acme/dns/acmedns/acmedns_test.go +++ b/pkg/issuer/acme/dns/acmedns/acmedns_test.go @@ -16,6 +16,7 @@ var ( func init() { acmednsHost = os.Getenv("ACME_DNS_HOST") acmednsAccountsJson = []byte(os.Getenv("ACME_DNS_ACCOUNTS_JSON")) + acmednsDomain = os.Getenv("ACME_DNS_DOMAIN") if len(acmednsHost) > 0 && len(acmednsAccountsJson) > 0 { acmednsLiveTest = true }