addonis1990
addonis1990

Reputation: 509

Password encnryption in Liquibase properties file

To manage migration with Liquibase, I am using a properties file that holds all the information about the database connection. The pitfall of this file is that it discloses my database password since it is a plain text file. Is there a way to avoid that ? Does Liquibase support any kind of encryption for the properties file ?

Upvotes: 3

Views: 3499

Answers (1)

dbf
dbf

Reputation: 6499

Have a look on this jira: https://liquibase.jira.com/browse/CORE-1932 Looks like you may use your own property provider class to handle encryption etc. I haven't seen any docs for it, but you can browse commits for this task.

Upvotes: 1

Related Questions