You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use enterprisedb postgres.
How can I alter the role ldap_roles in the ldap2pg.yml file?
After creating the role ldap_roles I want to alter the role with the statement:
alter role ldap_roles set edb_audit_statement to 'all'
I want to alter the role in the ldap2pg.yml file and not in a seperate sql file or script.
The text was updated successfully, but these errors were encountered:
There is nothing like custom sql as of now in ldap2pg, except for privileges.
There is a workaround through, but quite ugly, use a privilege. Something like :
privileges:
edb_audit_statement:
grant: ALTER ROLE {role} SET edb_audit_statement to 'all'sync_map:
- grant:
privilege: edb_audit_statementrole: ldap_roles
I use enterprisedb postgres.
How can I alter the role ldap_roles in the ldap2pg.yml file?
After creating the role ldap_roles I want to alter the role with the statement:
alter role ldap_roles set edb_audit_statement to 'all'
I want to alter the role in the ldap2pg.yml file and not in a seperate sql file or script.
The text was updated successfully, but these errors were encountered: