added other postgres user perms such that they can be enbabled/disabled by this formula

This commit is contained in:
Dominic Ferrantelli 2015-05-05 11:52:33 -07:00
parent 4656452825
commit 9e1ff20af5

View file

@ -89,6 +89,10 @@ postgres-user-{{ name }}:
postgres_user.present:
- name: {{ name }}
- createdb: {{ user.get('createdb', False) }}
- createroles: {{ user.get('createroles', False) }}
- createuser: {{ user.get('createuser', False) }}
- inherit: {{ user.get('inherit', True) }}
- replication: {{ user.get('replication', False) }}
- password: {{ user.get('password', 'changethis') }}
- user: {{ user.get('runas', 'postgres') }}
- require: