-
Notifications
You must be signed in to change notification settings - Fork 578
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
[FEATURE] Additional privileges support #505
base: master
Are you sure you want to change the base?
Conversation
in postgresql.conf the value for `passwod_encryption` can be only one of the following as per documentation (https://www.postgresql.org/docs/12/auth-password.html): - scram-sha-256 - md5 - password
This failed because of docker image pull limit. |
@mprenditore , thanks for the Pull Request. Could you squash your commits, which when pushed back should trigger the new CI pipeline to test it. I haven't reviewed the code yet, but let's get that first step done. We should probably add come CI tests to ensure this works for all versions now, and in the future. |
This pr has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution! |
This PR add support for additional permissions to users using the official module
postgresql_privs
from ansible.I've also changed the default value of
postgresql_password_encryption
to md5 because the value on is not a valid one based on the official postgresql documentation.I hope that you all can benefit from it as I'm doing :)
Cheers
Stefano