From ff70b12084854ce33a22132f69d7d0e7fad594a6 Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Thu, 26 Mar 2026 22:36:13 +0000 Subject: [PATCH] chore: Add HTTP/HTTPS firewall rules for Load Balancer --- terraform/firewall.tf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/terraform/firewall.tf b/terraform/firewall.tf index f8531a5..3b92570 100644 --- a/terraform/firewall.tf +++ b/terraform/firewall.tf @@ -89,6 +89,22 @@ resource "hcloud_firewall" "cluster" { } } + rule { + description = "HTTP from Load Balancer" + direction = "in" + protocol = "tcp" + port = "80" + source_ips = ["0.0.0.0/0"] + } + + rule { + description = "HTTPS from Load Balancer" + direction = "in" + protocol = "tcp" + port = "443" + source_ips = ["0.0.0.0/0"] + } + rule { description = "ICMP" direction = "in"