From 0110e6ba79adc9f7fe8ee7b1f8dac0c9e44fe5a4 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 29 May 2026 12:10:53 +0200 Subject: [PATCH] fix: varname --- tasks/firewall.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/firewall.yaml b/tasks/firewall.yaml index 515c154..8329062 100644 --- a/tasks/firewall.yaml +++ b/tasks/firewall.yaml @@ -60,8 +60,7 @@ direction: "in" proto: "{{ item.proto | default('tcp') }}" from_ip: "{{ item.from_ip }}" - to_port: - "{{ omit if (item.proto | default('tcp')) in common_firewall_portless_protocols else item.to_port }}" + to_port: "{{ omit if (item.proto | default('tcp')) in firewall_portless_protocols else item.to_port }}" loop: "{{ __firewall_all_rules }}" loop_control: label: " {{ item.name }}"