From 9681fd6060e42ede6fef4b894b2847ea4294c0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 3 Feb 2020 14:07:05 +0100 Subject: [PATCH] open Metrics port too 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 0fb0c7f..8a11b2a 100644 --- a/tasks/firewall.yml +++ b/tasks/firewall.yml @@ -9,6 +9,7 @@ protocol: '{{ rule.protocol }}' destination_port: '{{ rule.port }}' with_items: + - { protocol: 'tcp', port: '{{ beacon_node_metrics_port }}' } - { protocol: 'tcp', port: '{{ beacon_node_listening_port }}' } - { protocol: 'udp', port: '{{ beacon_node_discovery_port }}' } loop_control: