I'm writing a Quarkus Extension (on Quarkus 2.16) whose purpose is to set some fields of a MyClient object based on values inserted in the application.properties.
I would like this extension to be able to manage N instances of MyClient by reading properties whose key must follow a syntax like:
quarkus.myextension.myclient.CLIENTNAME-1.name=Bob
quarkus.myextension.myclient.CLIENTNAME-2.name=John
...
quarkus.myextension.myclient.CLIENTNAME-N.name=Paul
Where CLIENTNAME is a value chosen at will by the user of the extension.
Is there any way to achieve this result? I've seen similar behavior in many extensions (e.g. RestClient) but haven't figured out how to reproduce it
Thanks a lot.