Does anyone knows if liquibase open source 4.19.0 supports postgres with kerberos authentication?
Because im having troubles while connecting to an rds database with kerberos auth.
I have a valid kerberos ticket, a keytab which contains my principal and i validated that i can access the database through psql using my kerberos ticket.
This is what my liquibase validate script looks like
export JAVA_OPTS=-Djava.security.krb5.conf=/etc/krb5.conf && liquibase --driver=org.postgresql.Driver --url=${URL} --changeLogFile=changelog-master.xml --username=${USERNAME} --password=${PASSWORD} --logLevel=info validate
But im getting GSS authentication failed - No LoginModules configured for pgjdbc
If anyone could help i will appreciate