Variable name fixed

This commit is contained in:
2021-09-30 08:48:57 +02:00
parent 75529be896
commit 97fc4c0465

View File

@@ -39,5 +39,5 @@ The regex `(?<=\()\d+` uses a feature called *positive lookbehind*: `(?<=\()`. I
tasks:
- debug:
msg: '{{ sample.results | json_query("[*].stdout_lines[1]") | map("regex_search" ,"(?<=\()\d+") | list }}'
msg: '{{ sample.result_list | json_query("[*].stdout_lines[1]") | map("regex_search" ,"(?<=\()\d+") | list }}'
```