Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update REFERENCE.md with recent breaking changes #303

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ The following parameters are available in the `letsencrypt::certonly` defined ty
* [`environment`](#environment)
* [`key_size`](#key_size)
* [`manage_cron`](#manage_cron)
* [`suppress_cron_output`](#suppress_cron_output)
* [`cron_output`](#cron_output)
* [`cron_before_command`](#cron_before_command)
* [`cron_success_command`](#cron_success_command)
* [`cron_hour`](#cron_hour)
Expand Down Expand Up @@ -859,13 +859,16 @@ Runs daily but only renews if near expiration, e.g. within 10 days.

Default value: ``false``

##### <a name="suppress_cron_output"></a>`suppress_cron_output`
##### <a name="cron_output"></a>`cron_output`

Data type: `Boolean`
Data type: `Optional[Enum['suppress', 'log']]`

Redirect cron output to devnull
How to treat cron output
`suppress` - Suppress all output
`log` - Forward cron output to syslog
undef - Do nothing with cron output (default)

Default value: ``false``
Default value: ``undef``

##### <a name="cron_before_command"></a>`cron_before_command`

Expand Down