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.
master^2
Piwccle 2026-07-29 11:23:12 +02:00
parent 03f6a8b810
commit 85d7762887
1 changed files with 1 additions and 1 deletions

View File

@ -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"]