Open
Description
According to the Jinja2 python implementation 'attribute' param should support chained attribute access (include indexes). I.e., for instance, list | map(attribute='attr1.attr2.0.attr3')
should access attr3
attribute of 0th element of attr2
attribute value of attr1
attribute value of each list
item.