Skip to content

Commit

Permalink
review: generate
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Apr 10, 2021
1 parent 2e991e3 commit c495b99
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions cmd/zz_gen_cmd_dnshelp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:`)
Expand All @@ -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`)
Expand Down
13 changes: 7 additions & 6 deletions docs/content/dns/zz_gen_vinyldns.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ slug: vinyldns
<!-- providers/dns/vinyldns/vinyldns.toml -->
<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->

Since: v4.3.1
Since: v4.4.0

Configuration for [VinylDNS](https://www.vinyldns.io).

Expand All @@ -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
```


Expand All @@ -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).
Expand All @@ -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)

<!-- THIS DOCUMENTATION IS AUTO-GENERATED. PLEASE DO NOT EDIT. -->
<!-- providers/dns/vinyldns/vinyldns.toml -->
Expand Down

0 comments on commit c495b99

Please sign in to comment.