Trying to use anchors in an additive way, Following YAML code will not work but can explain what I want it to do
  endpoint:
    data.updates.index.name: &UPDATES-INDEX-NAME "data-updates"
    meta.data.type.name: &DATA-TYPE-NAME "meta-data"
    last.run.type.name: &RUN-TYPE-NAME "lastrun"
    search.ctx: *UPDATES-INDEX-NAME "/" *DATA-TYPE-NAME "/_search"
    search.lastrun: *UPDATES-INDEX-NAME "/" *RUN-TYPE-NAME "/_search"
    update.lastrun: *UPDATES-INDEX-NAME "/" *RUN-TYPE-NAME "/"
a1: &anchor1 "hello" a2: &anchor2 "moon" property: *anchor1 "-" *anchor2
property should yield "hello-moon" is it possible at all? tried also using ${} instead of anchors