Complex configuration options as ENV vars

Hey, i’m trying to configure the application server and network server via environmental variables and can’t find any docu or reference on the correct names and syntax for some of the configuration options.

Take the following toml configs:

application server:
[application_server.integration]
enabled=[“mqtt”, “aws_sns”]

network server:
[network_server.network_settings]
[[network_server.network_settings.extra_channels]]
frequency=867100000
min_dr=0
max_dr=5

What would be the correct ENV var name / value for the above?

Thanks.

Thanks!

This is what i ended up with:

NETWORK_SERVER__NETWORK_SETTINGS__EXTRA_CHANNELS=[{"frequency":867100000,"min_dr":0,"max_dr":5}]
APPLICATION_SERVER__INTEGRATION__ENABLED=["mqtt","aws_sns"]

Sadly the application server config throws the following error:

 time="2020-07-31T17:36:26Z" level=fatal msg="setup integration error: unknonwn integration type: [\"mqtt\""

The correct form is simply:
APPLICATION_SERVER__INTEGRATION__ENABLED=mqtt,aws_sns