From 282c3a7e5cd0a70907e0b4201e13305c6f2e327a Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Wed, 23 Jan 2019 17:13:00 +0200 Subject: [PATCH] Added port 5000 to firewall rules to allow remote connection to the island --- envs/monkey_zoo/terraform/firewalls.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envs/monkey_zoo/terraform/firewalls.tf b/envs/monkey_zoo/terraform/firewalls.tf index 037531869..df33ed4d4 100644 --- a/envs/monkey_zoo/terraform/firewalls.tf +++ b/envs/monkey_zoo/terraform/firewalls.tf @@ -4,7 +4,7 @@ resource "google_compute_firewall" "islands-in" { allow { protocol = "tcp" - ports = ["22", "443", "3389"] + ports = ["22", "443", "3389", "5000"] } direction = "INGRESS"