3

In Taurus is it possible to use an external properties file for specifying properties ?

I have read this but didn't find the solution.

My concern is that I have something like 40 properties in existing user.properties and don't want to move them in YAML file.

Loc Ann
  • 455
  • 6
  • 24

1 Answers1

3

Directly no, however you can define the properties in a separate YAML or JSON file and include it into main YAML config like:

included-configs:  
- properties.yml  # the file containing your properties definitions
Dmitri T
  • 159,985
  • 5
  • 83
  • 133