We've used quarkus as basement for new project services.
Considering its configuration, it can be configured using yml
files.
To follow this way, added
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-config-yaml</artifactId>
</dependency>
yml
configuration applied. To improve this configuration, I'd like to have a chance put some configurations in different files and combine them together, depending on...
For example I need next configurations in separate files:
application-postgre-ds.yml
application-oracle-ds.yml
application-xxx-ds.yml
- ...
application-apigee.yml
I'd like to manage them in my main profile
configuration like other profiles imports
quarkus:
profiles:
include: postgre-ds, oracle-ds
or like imports from classpath
quarkus:
import:
config: classpath:application-postgre-ds.yml;application-oracle-ds.yml
but haven't detected nothing useful in their documentation.
I hope I missed correct instruction and someone would help me make working combined configuration.