From f05f9a17c5fe57291779fa797b960d5b75598fe3 Mon Sep 17 00:00:00 2001 From: Alexey Bulenkov Date: Tue, 28 Jun 2022 02:39:59 +0300 Subject: [PATCH 1/3] docs: fixed invalid environment parameter name in example --- docs/content/dns/zz_gen_liquidweb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/dns/zz_gen_liquidweb.md b/docs/content/dns/zz_gen_liquidweb.md index f35450abb0..7c6cb7c122 100644 --- a/docs/content/dns/zz_gen_liquidweb.md +++ b/docs/content/dns/zz_gen_liquidweb.md @@ -28,7 +28,7 @@ Here is an example bash command using the Liquid Web provider: ```bash LIQUID_WEB_USERNAME=someuser \ LIQUID_WEB_PASSWORD=somepass \ -LIQUID_ZONE=tacoman.com.net \ +LIQUID_WEB_ZONE=tacoman.com.net \ lego --email you@example.com --dns liquidweb --domains my.example.org run ``` From 1d3853e4bf32e78df9eea399080ee0448f761a1c Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Tue, 28 Jun 2022 01:44:20 +0200 Subject: [PATCH 2/3] review: generate doc --- docs/content/dns/zz_gen_liquidweb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/dns/zz_gen_liquidweb.md b/docs/content/dns/zz_gen_liquidweb.md index 7c6cb7c122..f35450abb0 100644 --- a/docs/content/dns/zz_gen_liquidweb.md +++ b/docs/content/dns/zz_gen_liquidweb.md @@ -28,7 +28,7 @@ Here is an example bash command using the Liquid Web provider: ```bash LIQUID_WEB_USERNAME=someuser \ LIQUID_WEB_PASSWORD=somepass \ -LIQUID_WEB_ZONE=tacoman.com.net \ +LIQUID_ZONE=tacoman.com.net \ lego --email you@example.com --dns liquidweb --domains my.example.org run ``` From 9ba7cfeebd91cb103536e0d31bd0cc29e2274e9e Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Tue, 28 Jun 2022 01:45:26 +0200 Subject: [PATCH 3/3] review: generate doc --- docs/content/dns/zz_gen_liquidweb.md | 2 +- providers/dns/liquidweb/liquidweb.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/dns/zz_gen_liquidweb.md b/docs/content/dns/zz_gen_liquidweb.md index f35450abb0..7c6cb7c122 100644 --- a/docs/content/dns/zz_gen_liquidweb.md +++ b/docs/content/dns/zz_gen_liquidweb.md @@ -28,7 +28,7 @@ Here is an example bash command using the Liquid Web provider: ```bash LIQUID_WEB_USERNAME=someuser \ LIQUID_WEB_PASSWORD=somepass \ -LIQUID_ZONE=tacoman.com.net \ +LIQUID_WEB_ZONE=tacoman.com.net \ lego --email you@example.com --dns liquidweb --domains my.example.org run ``` diff --git a/providers/dns/liquidweb/liquidweb.toml b/providers/dns/liquidweb/liquidweb.toml index d73410a856..1da09442ec 100644 --- a/providers/dns/liquidweb/liquidweb.toml +++ b/providers/dns/liquidweb/liquidweb.toml @@ -7,7 +7,7 @@ Since = "v3.1.0" Example = ''' LIQUID_WEB_USERNAME=someuser \ LIQUID_WEB_PASSWORD=somepass \ -LIQUID_ZONE=tacoman.com.net \ +LIQUID_WEB_ZONE=tacoman.com.net \ lego --email you@example.com --dns liquidweb --domains my.example.org run '''