Skip to content

Commit

Permalink
issue #254 - defaults and doc for postgresql_privs module
Browse files Browse the repository at this point in the history
  • Loading branch information
zerwes committed Jan 6, 2025
1 parent 93fd472 commit 39c20fc
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ postgresql_users: []
# - name: jdoe #required; the rest are optional
# password: # defaults to not set
# encrypted: # defaults to not set
# priv: # defaults to not set
# role_attr_flags: # defaults to not set
# db: # defaults to not set
# login_host: # defaults to 'localhost'
Expand All @@ -68,5 +67,25 @@ postgresql_users: []
# port: # defaults to not set
# state: # defaults to 'present'

# Privileges to configure
# see https://docs.ansible.com/ansible/latest/collections/community/postgresql/postgresql_privs_module.html#ansible-collections-community-postgresql-postgresql-privs-module
postgresql_privs: []
# - db: exampledb # database (required)
# roles: jdoe # role(s) the privs apply to (required)
# privs: # comma separated list of privileges - defaults to not set
# type: # type of database object to set privileges on - defaults to not set
# objs: # list of database objects to set privileges on - defaults to not set
# schema: # defaults to not set
# session_role: # defaults to not set
# fail_on_role: # defaults to true
# grant_option: # defaults to not set
# target_roles: # defaults to not set
# login_host: # defaults to 'localhost'
# login_password: # defaults to not set
# login_user: # defaults to '{{ postgresql_user }}'
# login_unix_socket: # defaults to 1st of postgresql_unix_socket_directories
# port: # defaults to not set
# state: # defaults to 'present'

# Whether to output user data when managing users.
postgres_users_no_log: true

0 comments on commit 39c20fc

Please sign in to comment.