From 31a979e93d46af9d296059069266511c0895f1e7 Mon Sep 17 00:00:00 2001 From: erzetpe Date: Tue, 6 Aug 2019 16:03:34 +0200 Subject: [PATCH] Item: #422 Desc: Add missing ports for prometheus and grafana --- .../infrastructure/virtual-machine.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/core/src/epicli/data/aws/defaults/infrastructure/virtual-machine.yml b/core/src/epicli/data/aws/defaults/infrastructure/virtual-machine.yml index 360c58af7d..5c7aa2787c 100644 --- a/core/src/epicli/data/aws/defaults/infrastructure/virtual-machine.yml +++ b/core/src/epicli/data/aws/defaults/infrastructure/virtual-machine.yml @@ -452,6 +452,26 @@ specification: destination_port_range: "9100" source_address_prefix: "10.1.0.0/20" destination_address_prefix: "0.0.0.0/0" + - name: prometheus + description: Allow connection to Prometheus + priority: 302 + direction: Inbound + access: Allow + protocol: Tcp + source_port_range: "*" + destination_port_range: "9090" + source_address_prefix: "10.1.0.0/20" + destination_address_prefix: "0.0.0.0/0" + - name: grafana + description: Allow connection to Grafana + priority: 302 + direction: Inbound + access: Allow + protocol: Tcp + source_port_range: "*" + destination_port_range: "3000" + source_address_prefix: "10.1.0.0/20" + destination_address_prefix: "0.0.0.0/0" - name: out description: Allow out priority: 101