I have a yaml format something like this:-
rule1: attribute1: [a,b,c,d,e,f] attribute2: - {signals: [a,b], max: 10} - {signals: [c,d], max: 5} - {signals: [e,f], max: 9} .. ...... rule2: *
Basically I have to repeat the same set of hierarchy 20 times with different set of values. How do I do by only defining the structure once and pass the values later so as to reduce the complexity of modifying the structure in all 20 places..??