--- "Rendering using {{url}} function": - do: render_search_template: body: > { "source": { "query": { "match": { "url": "https://localhost:9200/{{#url}}{{index}}{{/url}}/_search" } } }, "params": { "index": "" } } - match: { template_output.query.match.url: "https://localhost:9200/%3Clogstash-%7Bnow%2Fd-2d%7D%3E/_search" } --- "Rendering using {{url}} and {{join}} functions": - do: render_search_template: body: > { "source": { "query": { "match": { "url": "{{#url}}https://localhost:9200/{{#join}}indices{{/join}}/_stats{{/url}}" } } }, "params": { "indices": ["", "", ""] } } # Decoded URL is https://localhost:9200/,,/_stats - match: { template_output.query.match.url: "https%3A%2F%2Flocalhost%3A9200%2F%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E%2F_stats" }