Skip to content

Commit

Permalink
doc: remove TODO. (go-acme#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored May 6, 2019
1 parent b186acb commit 437d6a0
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 34 deletions.
12 changes: 6 additions & 6 deletions cmd/zz_gen_cmd_dnshelp.go
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,8 @@ func displayDNSHelp(name string) {
fmt.Fprintln(w)

fmt.Fprintln(w, `Credentials:`)
fmt.Fprintln(w, ` - "GODADDY_API_KEY": **TODO**`)
fmt.Fprintln(w, ` - "GODADDY_API_SECRET": **TODO**`)
fmt.Fprintln(w, ` - "GODADDY_API_KEY": API key`)
fmt.Fprintln(w, ` - "GODADDY_API_SECRET": API secret`)
fmt.Fprintln(w)

fmt.Fprintln(w, `Additional Configuration:`)
Expand All @@ -672,8 +672,8 @@ func displayDNSHelp(name string) {
fmt.Fprintln(w)

fmt.Fprintln(w, `Credentials:`)
fmt.Fprintln(w, ` - "HOSTINGDE_API_KEY": **TODO**`)
fmt.Fprintln(w, ` - "HOSTINGDE_ZONE_NAME": **TODO**`)
fmt.Fprintln(w, ` - "HOSTINGDE_API_KEY": API key`)
fmt.Fprintln(w, ` - "HOSTINGDE_ZONE_NAME": Zone name in ACE format`)
fmt.Fprintln(w)

fmt.Fprintln(w, `Additional Configuration:`)
Expand All @@ -699,10 +699,10 @@ func displayDNSHelp(name string) {

fmt.Fprintln(w, `Additional Configuration:`)
fmt.Fprintln(w, ` - "HTTPREQ_HTTP_TIMEOUT": API request timeout`)
fmt.Fprintln(w, ` - "HTTPREQ_PASSWORD": **TODO**`)
fmt.Fprintln(w, ` - "HTTPREQ_PASSWORD": Basic authentication password`)
fmt.Fprintln(w, ` - "HTTPREQ_POLLING_INTERVAL": Time between DNS propagation check`)
fmt.Fprintln(w, ` - "HTTPREQ_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation`)
fmt.Fprintln(w, ` - "HTTPREQ_USERNAME": **TODO**`)
fmt.Fprintln(w, ` - "HTTPREQ_USERNAME": Basic authentication username`)

fmt.Fprintln(w)
fmt.Fprintln(w, `More information: https://go-acme.github.io/lego/dns/httpreq`)
Expand Down
16 changes: 8 additions & 8 deletions docs/content/dns/zz_gen_exec.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ lego --dns exec --domains my.domain.com --email [email protected] run

## Base Configuration

| Environment Variable Name | Description |
|-----------------------|-------------|
| `EXEC_MODE` | `RAW`, none |
| `EXEC_PATH` | TODO |
| Environment Variable Name | Description |
|---------------------------|---------------------------------------|
| `EXEC_MODE` | `RAW`, none |
| `EXEC_PATH` | The path of the the external program. |


## Additional Configuration

| Environment Variable Name | Description |
|--------------------------------|-------------|
| `EXEC_POLLING_INTERVAL` | Time between DNS propagation check |
| `EXEC_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation |
| Environment Variable Name | Description |
|----------------------------|-------------------------------------------|
| `EXEC_POLLING_INTERVAL` | Time between DNS propagation check. |
| `EXEC_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation. |


## Description
Expand Down
4 changes: 2 additions & 2 deletions docs/content/dns/zz_gen_godaddy.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ _Please contribute by adding a CLI example._

| Environment Variable Name | Description |
|-----------------------|-------------|
| `GODADDY_API_KEY` | **TODO** |
| `GODADDY_API_SECRET` | **TODO** |
| `GODADDY_API_KEY` | API key |
| `GODADDY_API_SECRET` | API secret |

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 Down
4 changes: 2 additions & 2 deletions docs/content/dns/zz_gen_hostingde.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ _Please contribute by adding a CLI example._

| Environment Variable Name | Description |
|-----------------------|-------------|
| `HOSTINGDE_API_KEY` | **TODO** |
| `HOSTINGDE_ZONE_NAME` | **TODO** |
| `HOSTINGDE_API_KEY` | API key |
| `HOSTINGDE_ZONE_NAME` | Zone name in ACE format |

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 Down
4 changes: 2 additions & 2 deletions docs/content/dns/zz_gen_httpreq.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ More information [here](/lego/dns/#configuration-and-credentials).
| Environment Variable Name | Description |
|--------------------------------|-------------|
| `HTTPREQ_HTTP_TIMEOUT` | API request timeout |
| `HTTPREQ_PASSWORD` | **TODO** |
| `HTTPREQ_PASSWORD` | Basic authentication password |
| `HTTPREQ_POLLING_INTERVAL` | Time between DNS propagation check |
| `HTTPREQ_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation |
| `HTTPREQ_USERNAME` | **TODO** |
| `HTTPREQ_USERNAME` | Basic authentication username |

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 Down
16 changes: 8 additions & 8 deletions providers/dns/exec/exec.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ Additional = '''
## Base Configuration
| Environment Variable Name | Description |
|-----------------------|-------------|
| `EXEC_MODE` | `RAW`, none |
| `EXEC_PATH` | TODO |
| Environment Variable Name | Description |
|---------------------------|---------------------------------------|
| `EXEC_MODE` | `RAW`, none |
| `EXEC_PATH` | The path of the the external program. |
## Additional Configuration
| Environment Variable Name | Description |
|--------------------------------|-------------|
| `EXEC_POLLING_INTERVAL` | Time between DNS propagation check |
| `EXEC_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation |
| Environment Variable Name | Description |
|----------------------------|-------------------------------------------|
| `EXEC_POLLING_INTERVAL` | Time between DNS propagation check. |
| `EXEC_PROPAGATION_TIMEOUT` | Maximum waiting time for DNS propagation. |
## Description
Expand Down
4 changes: 2 additions & 2 deletions providers/dns/godaddy/godaddy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Since = "v0.5.0"

[Configuration]
[Configuration.Credentials]
GODADDY_API_KEY = "**TODO**"
GODADDY_API_SECRET = "**TODO**"
GODADDY_API_KEY = "API key"
GODADDY_API_SECRET = "API secret"
[Configuration.Additional]
GODADDY_POLLING_INTERVAL = "Time between DNS propagation check"
GODADDY_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
Expand Down
4 changes: 2 additions & 2 deletions providers/dns/hostingde/hostingde.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Since = "v1.1.0"

[Configuration]
[Configuration.Credentials]
HOSTINGDE_API_KEY = "**TODO**"
HOSTINGDE_ZONE_NAME = "**TODO**"
HOSTINGDE_API_KEY = "API key"
HOSTINGDE_ZONE_NAME = "Zone name in ACE format"
[Configuration.Additional]
HOSTINGDE_POLLING_INTERVAL = "Time between DNS propagation check"
HOSTINGDE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
Expand Down
4 changes: 2 additions & 2 deletions providers/dns/httpreq/httpreq.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ Basic authentication (optional) can be set with some environment variables:
HTTPREQ_MODE = "`RAW`, none"
HTTPREQ_ENDPOINT = "The URL of the server"
[Configuration.Additional]
HTTPREQ_USERNAME = "**TODO**"
HTTPREQ_PASSWORD = "**TODO**"
HTTPREQ_USERNAME = "Basic authentication username"
HTTPREQ_PASSWORD = "Basic authentication password"
HTTPREQ_POLLING_INTERVAL = "Time between DNS propagation check"
HTTPREQ_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
HTTPREQ_HTTP_TIMEOUT = "API request timeout"

0 comments on commit 437d6a0

Please sign in to comment.