From 3f8a0f6657cc8e21b3afd9a09c533b199604e369 Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Fri, 19 Oct 2018 00:55:19 +0200 Subject: [PATCH] Use syntax loop instead of with_items in example (#47241) --- lib/ansible/modules/system/ufw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/ufw.py b/lib/ansible/modules/system/ufw.py index a887b37514..db081991e8 100644 --- a/lib/ansible/modules/system/ufw.py +++ b/lib/ansible/modules/system/ufw.py @@ -165,7 +165,7 @@ EXAMPLES = ''' ufw: rule: allow src: '{{ item }}' - with_items: + loop: - 10.0.0.0/8 - 172.16.0.0/12 - 192.168.0.0/16