mirror of
https://github.com/geerlingguy/ansible-role-postgresql.git
synced 2025-02-03 15:36:08 -05:00
PR #266: Update README for new privs list option.
This commit is contained in:
parent
aafbf266d4
commit
0938c2cf6e
1 changed files with 22 additions and 1 deletions
23
README.md
23
README.md
|
@ -118,7 +118,6 @@ postgresql_users:
|
||||||
- name: jdoe #required; the rest are optional
|
- name: jdoe #required; the rest are optional
|
||||||
password: # defaults to not set
|
password: # defaults to not set
|
||||||
encrypted: # defaults to not set
|
encrypted: # defaults to not set
|
||||||
priv: # defaults to not set
|
|
||||||
role_attr_flags: # defaults to not set
|
role_attr_flags: # defaults to not set
|
||||||
db: # defaults to not set
|
db: # defaults to not set
|
||||||
login_host: # defaults to 'localhost'
|
login_host: # defaults to 'localhost'
|
||||||
|
@ -131,6 +130,28 @@ postgresql_users:
|
||||||
|
|
||||||
A list of users to ensure exist on the server. Only the `name` is required; all other properties are optional.
|
A list of users to ensure exist on the server. Only the `name` is required; all other properties are optional.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
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'
|
||||||
|
```
|
||||||
|
|
||||||
|
A list of privileges to configure (new in role version 4.0.0).
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
postgres_users_no_log: true
|
postgres_users_no_log: true
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue