From 97fc4c0465e6d8301966d7428350814e0cac04ea Mon Sep 17 00:00:00 2001 From: Michael Schlapa Date: Thu, 30 Sep 2021 08:48:57 +0200 Subject: [PATCH] Variable name fixed --- Ansible/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ansible/README.md b/Ansible/README.md index 4bc358e..d994337 100644 --- a/Ansible/README.md +++ b/Ansible/README.md @@ -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 }}' ```