Greetings to all. I would like to ask you a query related to Camunda Run configuration (I am using version 7). Currently, I know that it is necessary to add the database, user and password in the default.yml or production.yml files. Is it possible to configure these values using environment variables? If so, how would the process be?
# datasource configuration is required
spring.datasource:
url: jdbc:sqlserver://localhost:1433;databaseName=/*Your_Database*/
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
username: /*Your_Username*/
password: /*Your_Password*/