diff --git a/iac/ec2.tf b/iac/ec2.tf index b08e1eb..44dfc18 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 {