Is it possible in .yml
config to have dynamic properties in variables that are set depending on a particular case. For example:
MY_VAR: &MY_VAR
keys:
key2: blahblahblah
key3: blahblahblah # only apply this for section2, not section1
section1:
var: *MY_VAR
section2: # this case needs key3 set, otherwise everything else is the same
var: *MY_VAR