-
Notifications
You must be signed in to change notification settings - Fork 615
MODULES-2989 parameter ensure of custom resource postgresql_replication_slot is not documented #884
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
MODULES-2989 parameter ensure of custom resource postgresql_replication_slot is not documented #884
Conversation
README.md
Outdated
@@ -1638,6 +1638,14 @@ Specifies the name of the slot to create. Must be a valid replication slot name. | |||
|
|||
This is the namevar. | |||
|
|||
##### `ensure` | |||
|
|||
Specifies the action to create or destroy named slot. Must be present |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you remove "Must be present" here and add "Required." as a line under the ensure title please?
README.md
Outdated
|
||
Valid values: `present`, `absent`. | ||
|
||
Default value: `present`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The values present and absent need to have single quotes around them instead of backticks.
fixed ' v ` issue from review
added required string instead of must be present
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move the 'Required.' to above the description and below the title. Eg something like this:
db
Required.
Sets the name of the database in which to create this schema.
…on_slot is not documented (puppetlabs#884) added required string instead of must be present
…on_slot is not documented (puppetlabs#884) added required string instead of must be present
MODULES-2989 parameter ensure of custom resource postgresql_replication_slot is not documented
updated the README.md appropriately