From 05d47b4b1478c044ffca1cfd029ebd3251174aa2 Mon Sep 17 00:00:00 2001 From: Nathan Kinkade Date: Wed, 3 Jun 2026 16:36:29 -0600 Subject: [PATCH] Adds 9100 to allowed ports for IPv6 monitoring VMs This allows Prometheus to scrape node_exporter on that port. --- modules/monitoring/firewall.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/firewall.tf b/modules/monitoring/firewall.tf index 15e42d1..16fe028 100644 --- a/modules/monitoring/firewall.tf +++ b/modules/monitoring/firewall.tf @@ -14,7 +14,7 @@ resource "google_compute_firewall" "monitoring_iap_ssh" { # Allow Prometheus to scrape the monitoring VM via its external IPv4 address. resource "google_compute_firewall" "monitoring_scrape" { allow { - ports = ["9115"] + ports = ["9100", "9115"] protocol = "tcp" } description = "Allow Prometheus to scrape the monitoring VM (managed by Terraform)"