Hello, i need to encrypt the DB password into flowable-default.properties file.
Anyone know how to do it?
Thank you
Hello, i need to encrypt the DB password into flowable-default.properties file.
Anyone know how to do it?
Thank you
Hi,
Are you familiar with SpringBoot and externalized configuration (Spring Boot Features)? Essentially, it is the system that allows you to override the values in the application.properties
file(s) in various ways (e.g. environment variables). That is the first thing that you should understand (you can start by NOT putting the credentials in the properties files, and instead setting them in environment variables in your environments).
When you are clear, you can see how Hashicorp Vault can be used in combination with SpringBoot to manage secrets: Spring Cloud Vault
Cheers,
Olivier