From 85d77628874b1881401678294a1e4dbeca146ed4 Mon Sep 17 00:00:00 2001 From: Piwccle Date: Wed, 29 Jul 2026 11:23:12 +0200 Subject: [PATCH] openvidu-deployment: close unused MinIO port 9000 on GCP elastic master firewall MinIO is not deployed on cloud deployments (native object storage is used) and the docs list no use for 9000; it was exposed to 0.0.0.0/0. --- openvidu-deployment/pro/elastic/gcp/tf-gpc-openvidu-elastic.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvidu-deployment/pro/elastic/gcp/tf-gpc-openvidu-elastic.tf b/openvidu-deployment/pro/elastic/gcp/tf-gpc-openvidu-elastic.tf index 5d8a3d5f1..93fbe2adb 100644 --- a/openvidu-deployment/pro/elastic/gcp/tf-gpc-openvidu-elastic.tf +++ b/openvidu-deployment/pro/elastic/gcp/tf-gpc-openvidu-elastic.tf @@ -65,7 +65,7 @@ resource "google_compute_firewall" "firewall_master" { allow { protocol = "tcp" - ports = ["22", "80", "443", "1935", "9000"] + ports = ["22", "80", "443", "1935"] } source_ranges = ["0.0.0.0/0"]