I would like to define in application.conf
a variable which will be a list of strings. Currently in application.conf I have something like this:
some.env.variable = ["a", "b"]
I tried:
some.env.variable = ${?I_AM_ENV}.split(",")
when I_AM_ENV = a,b
but it didn't work.
I get an error when loading app:
Wrong value type at 'some.env.variable', expecting: list but got: string