I know that you can override yaml config values with placeholders like so:
some-setting: ${SOME_SETTING:default value}
And I know that you can express lists of objects like so:
customers:
- name: acme
category: manufacturing
employees: 200
- name: virtucon
category: evil
employees: 1
So how would I express such a list via the ${} placeholder notation?