yq/examples/merge-anchor.yml

18 lines
151 B
YAML
Raw Normal View History

2019-12-16 10:09:23 +00:00
foo: &foo
a: original
thing: coolasdf
bar: &bar
b: 2
overrideA:
<<: [*foo,*bar]
a: vanilla
c: 3
foobar:
<<: *foo
thing: ice
c: 3