From e9edfcd1534bc27a6d18d1f3f635fe9f2371fd83 Mon Sep 17 00:00:00 2001 From: Victor Gasperi Date: Tue, 28 Oct 2025 00:10:02 -0300 Subject: [PATCH] fix: cidr_blocks --- iac/ec2.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iac/ec2.tf b/iac/ec2.tf index b08e1eb5..44dfc183 100644 --- a/iac/ec2.tf +++ b/iac/ec2.tf @@ -19,7 +19,7 @@ resource "aws_security_group" "k3s_sg" { from_port = 22 to_port = 22 protocol = "tcp" - cidr_blocks = [var.ssh_cidr] + cidr_blocks = ["0.0.0.0/0"] } ingress {