Back to Lego

External program

docs/content/dns/zz_gen_exec.md

4.35.23.6 KB
Original Source
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> <!-- providers/dns/exec/exec.toml --> <!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->

Solving the DNS-01 challenge using an external program.

<!--more-->
  • Code: exec
  • Since: v0.5.0

Here is an example bash command using the External program provider:

bash
EXEC_PATH=/the/path/to/myscript.sh \
lego --dns exec -d '*.example.com' -d example.com run

Base Configuration

Environment Variable NameDescription
EXEC_MODERAW, none
EXEC_PATHThe path of the the external program.

Additional Configuration

Environment Variable NameDescription
EXEC_POLLING_INTERVALTime between DNS propagation check in seconds (Default: 3).
EXEC_PROPAGATION_TIMEOUTMaximum waiting time for DNS propagation in seconds (Default: 60).
EXEC_SEQUENCE_INTERVALTime between sequential requests in seconds (Default: 60).

Description

The file name of the external program is specified in the environment variable EXEC_PATH.

When it is run by lego, three command-line parameters are passed to it: The action ("present" or "cleanup"), the fully-qualified domain name and the value for the record.

For example, requesting a certificate for the domain 'my.example.org' can be achieved by calling lego as follows:

bash
EXEC_PATH=./update-dns.sh \
lego --dns exec --d my.example.org run

It will then call the program './update-dns.sh' with like this:

bash
./update-dns.sh "present" "_acme-challenge.my.example.org." "MsijOYZxqyjGnFGwhjrhfg-Xgbl5r68WPda0J9EgqqI"

The program then needs to make sure the record is inserted. When it returns an error via a non-zero exit code, lego aborts.

When the record is to be removed again, the program is called with the first command-line parameter set to cleanup instead of present.

If you want to use the raw domain, token, and keyAuth values with your program, you can set EXEC_MODE=RAW:

bash
EXEC_MODE=RAW \
EXEC_PATH=./update-dns.sh \
lego --dns exec -d my.example.org run

It will then call the program ./update-dns.sh like this:

bash
./update-dns.sh "present" "--" "my.example.org." "some-token" "KxAy-J3NwUmg9ZQuM-gP_Mq1nStaYSaP9tYQs5_-YsE.ksT-qywTd8058G-SHHWA3RAN72Pr0yWtPYmmY5UBpQ8"

Commands

{{% notice note %}} The -- is because the token MAY start with a -, and the called program may try and interpret a - as indicating a flag. In the case of urfave, which is commonly used, you can use the -- delimiter to specify the start of positional arguments, and handle such a string safely. {{% /notice %}}

Present

ModeCommand
defaultmyprogram present <FQDN> <record>
RAWmyprogram present -- <domain> <token> <key_auth>

Cleanup

ModeCommand
defaultmyprogram cleanup <FQDN> <record>
RAWmyprogram cleanup -- <domain> <token> <key_auth>
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. --> <!-- providers/dns/exec/exec.toml --> <!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->