From 3c8d4b96cec1b8232f83b7e6f9f5f4a724432c38 Mon Sep 17 00:00:00 2001 From: Jakub Rusz Date: Thu, 17 Jul 2025 17:46:55 +0200 Subject: [PATCH] Fix ports for egress rules These should actually be "-1" to work for all ports. Signed-off-by: Jakub Rusz --- main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.tf b/main.tf index 3cb33c6..51c13ff 100644 --- a/main.tf +++ b/main.tf @@ -77,8 +77,8 @@ module "runner-instance" { runner_egress_rules = { allow_all = { description = "Allow all egress traffic" - from_port = 0 - to_port = 0 + from_port = "-1" + to_port = "-1" protocol = "-1" cidr_block = "0.0.0.0/0" } @@ -87,8 +87,8 @@ module "runner-instance" { runner_worker_egress_rules = { allow_all = { description = "Allow all egress traffic" - from_port = 0 - to_port = 0 + from_port = "-1" + to_port = "-1" protocol = "-1" cidr_block = "0.0.0.0/0" }