From c0148e61939cc2b3e9e4c6bbcd3e638930404483 Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Wed, 23 Dec 2020 11:38:24 +0100 Subject: [PATCH] Fix the merge of variables forgot the recursive parameter of combine filter --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index ce26470..7c95c89 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: merge variables passed to role and the defaults set_fact: - weed: "{{ default_weed | combine(weed) }}" + weed: "{{ default_weed | combine(weed, recursive=True) }}" - name: "check the release {{ weed.version }} exists on GitHub" uri: