From f7c287e52086345068d5a7ae21e7fd4c9a1ea345 Mon Sep 17 00:00:00 2001 From: Sepehr Hosseini Date: Sun, 19 Dec 2021 12:10:41 +1100 Subject: [PATCH] porkbun: fix typo in dns example (#1550) --- docs/content/dns/zz_gen_porkbun.md | 2 +- providers/dns/porkbun/porkbun.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/dns/zz_gen_porkbun.md b/docs/content/dns/zz_gen_porkbun.md index 64a0637e..0ef1ae64 100644 --- a/docs/content/dns/zz_gen_porkbun.md +++ b/docs/content/dns/zz_gen_porkbun.md @@ -22,7 +22,7 @@ Here is an example bash command using the Porkbun provider: ```bash PORKBUN_SECRET_API_KEY=xxxxxx \ -PORKBUN_PAPI_KEY=yyyyyy \ +PORKBUN_API_KEY=yyyyyy \ lego --email myemail@example.com --dns porkbun --domains my.example.org run ``` diff --git a/providers/dns/porkbun/porkbun.toml b/providers/dns/porkbun/porkbun.toml index ff406148..14e96988 100644 --- a/providers/dns/porkbun/porkbun.toml +++ b/providers/dns/porkbun/porkbun.toml @@ -6,7 +6,7 @@ Since = "v4.4.0" Example = ''' PORKBUN_SECRET_API_KEY=xxxxxx \ -PORKBUN_PAPI_KEY=yyyyyy \ +PORKBUN_API_KEY=yyyyyy \ lego --email myemail@example.com --dns porkbun --domains my.example.org run '''