Taurus : Using an external properties file instead of specifying in YAML

Viewed 563

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.

1 Answers

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
Related