diff --git a/cmd/zz_gen_cmd_dnshelp.go b/cmd/zz_gen_cmd_dnshelp.go index 22241aefcf1..8c40d784743 100644 --- a/cmd/zz_gen_cmd_dnshelp.go +++ b/cmd/zz_gen_cmd_dnshelp.go @@ -1772,7 +1772,7 @@ func displayDNSHelp(name string) error { // generated from: providers/dns/vinyldns/vinyldns.toml ew.writeln(`Configuration for VinylDNS.`) ew.writeln(`Code: 'vinyldns'`) - ew.writeln(`Since: 'v4.3.1'`) + ew.writeln(`Since: 'v4.4.0'`) ew.writeln() ew.writeln(`Credentials:`) @@ -1782,9 +1782,9 @@ func displayDNSHelp(name string) error { ew.writeln() ew.writeln(`Additional Configuration:`) - ew.writeln(` - "VINYLDNS_POLLING_INTERVAL": Time between DNS propagation check (default: 4)`) - ew.writeln(` - "VINYLDNS_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation (default: 120)`) - ew.writeln(` - "VINYLDNS_TTL": The TTL of the TXT record used for the DNS challenge (default: 30)`) + ew.writeln(` - "VINYLDNS_POLLING_INTERVAL": Time between DNS propagation check`) + ew.writeln(` - "VINYLDNS_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`) + ew.writeln(` - "VINYLDNS_TTL": The TTL of the TXT record used for the DNS challenge`) ew.writeln() ew.writeln(`More information: https://go-acme.github.io/lego/dns/vinyldns`) diff --git a/docs/content/dns/zz_gen_vinyldns.md b/docs/content/dns/zz_gen_vinyldns.md index 001be0cdbb2..1375e7e7cda 100644 --- a/docs/content/dns/zz_gen_vinyldns.md +++ b/docs/content/dns/zz_gen_vinyldns.md @@ -9,7 +9,7 @@ slug: vinyldns -Since: v4.3.1 +Since: v4.4.0 Configuration for [VinylDNS](https://www.vinyldns.io). @@ -23,8 +23,8 @@ Here is an example bash command using the VinylDNS provider: ```bash VINYLDNS_ACCESS_KEY=xxxxxx \ VINYLDNS_SECRET_KEY=yyyyy \ -VINYLDNS_HOST=https://api.vinyldns.company.invalid:9443 \ -lego --email myemail@company.invalid --dns vinyldns --domains my.company.invalid run +VINYLDNS_HOST=https://api.vinyldns.example.org:9443 \ +lego --email myemail@example.com --dns vinyldns --domains my.example.org run ``` @@ -46,9 +46,9 @@ More information [here](/lego/dns/#configuration-and-credentials). | Environment Variable Name | Description | |--------------------------------|-------------| -| `VINYLDNS_POLLING_INTERVAL` | Time between DNS propagation check (default: 4) | -| `VINYLDNS_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation (default: 120) | -| `VINYLDNS_TTL` | The TTL of the TXT record used for the DNS challenge (default: 30) | +| `VINYLDNS_POLLING_INTERVAL` | Time between DNS propagation check | +| `VINYLDNS_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation | +| `VINYLDNS_TTL` | The TTL of the TXT record used for the DNS challenge | The environment variable names can be suffixed by `_FILE` to reference a file instead of a value. More information [here](/lego/dns/#configuration-and-credentials). @@ -61,6 +61,7 @@ Users are required to have DELETE ACL level or zone admin permissions on the Vin ## More information - [API documentation](https://www.vinyldns.io/api/) +- [Go client](https://github.com/vinyldns/go-vinyldns)