From ce9cfdeef59ee20f6c3f9d0268c5b4187da94cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Sat, 16 Apr 2022 17:52:08 +0200 Subject: [PATCH] add quotes --- roles/customfirewall/tasks/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/customfirewall/tasks/main.yaml b/roles/customfirewall/tasks/main.yaml index 2894a95..481da62 100644 --- a/roles/customfirewall/tasks/main.yaml +++ b/roles/customfirewall/tasks/main.yaml @@ -3,6 +3,6 @@ community.general.ufw: rule: allow port: "{{item.port}}" - proto: {{item.proto}} - interface: {{item.interface}} - with_items: "{{firewall}}" + proto: "{{item.proto}}" + interface: "{{item.interface}}" + with_items: "{{ firewall }}"