Description
Currently you are not able to use {{ index .var 0 }} in the Message Template for example,
this means, that only raw {{ .var }} will work.
To Reproduce
Steps to reproduce the behavior:
- Start Container
- Add
{{ index .var 0 }} to Message Template
- Send Request
- [...]
Expected behavior
The go templating should be unaffected
Additional Context
This is happening due to the normalize func which is automatically applied to each variable to expand variables of type array or dict, etc..
Description
Currently you are not able to use
{{ index .var 0 }}in the Message Template for example,this means, that only raw
{{ .var }}will work.To Reproduce
Steps to reproduce the behavior:
{{ index .var 0 }}to Message TemplateExpected behavior
The go templating should be unaffected
Additional Context
This is happening due to the
normalizefunc which is automatically applied to each variable to expand variables of type array or dict, etc..