Skip to content

Commit

Permalink
add missing parameter documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonHoenscheid committed Aug 28, 2023
1 parent 0269e28 commit 9f5fd14
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions manifests/server_instance.pp
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# lint:ignore:140chars
# @param instance_name
# @param initdb_settings
# @param config_settings
# @param service_settings
# @param passwd_settings
# @param instance_name The name of the instance.
# @param instance_user The user to run the instance as. Defaults to $instance_name if not specified.
# @param instance_group The group to run the instance as. Defaults to $instance_name if not specified.
# @param initdb_settings Specifies a hash witn parameters for postgresql::server::instance::initdb
# @param config_settings Specifies a hash with parameters for postgresql::server::instance::config
# @param service_settings Specifies a hash with parameters for postgresql::server:::instance::service
# @param passwd_settings Specifies a hash with parameters for postgresql::server::instance::passwd
# @param roles Specifies a hash from which to generate postgresql::server::role resources.
# @param config_entries Specifies a hash from which to generate postgresql::server::config_entry resources.
# @param pg_hba_rules Specifies a hash from which to generate postgresql::server::pg_hba_rule resources.
# @param databases Specifies a hash from which to generate postgresql::server::db resources.
# @param databases Specifies a hash from which to generate postgresql::server::database resources.
# @param databases_and_users Specifies a hash from which to generate postgresql::server::db resources.
# @param database_grants Specifies a hash from which to generate postgresql::server::database_grant resources.
# @param table_grants Specifies a hash from which to generate postgresql::server::table_grant resources.

# lint:endignore:140chars
define postgresql::server_instance (
Expand Down

0 comments on commit 9f5fd14

Please sign in to comment.