From 678d490fb426f31e83cefa5efd7e5689642e689e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 10 Jun 2021 18:26:05 +0200 Subject: [PATCH] add missing group name to firewall rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- tasks/firewall.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/firewall.yml b/tasks/firewall.yml index 929fb73..431c264 100644 --- a/tasks/firewall.yml +++ b/tasks/firewall.yml @@ -3,6 +3,7 @@ win_firewall_rule: name: '{{ beacon_node_service_name }}-{{ rule.protocol }}' description: 'Nimbus Eth2 Beacon Node ports' + group: 'Nimbus Beacon Node' action: 'allow' direction: 'in' state: 'present'