Can we ref yaml config?

a yaml for example:

a:
b: 1
c: $b

Try something like this:

b: &valueOfB 1
c: *valueOfB

This takes advantage of yaml aliases.