From 9a2a45d518ac439098d83d9a1f51b4757b3b99d1 Mon Sep 17 00:00:00 2001 From: Miguel Elhaiek Date: Wed, 13 Mar 2024 10:29:16 -0300 Subject: [PATCH] Adding changes to deployment of EC2 --- terraform/main.tf | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index 2a19b15..daf95fb 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -23,20 +23,6 @@ resource "aws_security_group" "milvus_sg" { cidr_blocks = ["0.0.0.0/0"] } - ingress { - from_port = 2379 - to_port = 2379 - protocol = "tcp" - cidr_blocks = ["0.0.0.0/0"] - } - - ingress { - from_port = 9000 - to_port = 9001 - protocol = "tcp" - cidr_blocks = ["0.0.0.0/0"] - } - ingress { from_port = 19530 to_port = 19530 @@ -44,13 +30,6 @@ resource "aws_security_group" "milvus_sg" { cidr_blocks = ["0.0.0.0/0"] } - ingress { - from_port = 9091 - to_port = 9091 - protocol = "tcp" - cidr_blocks = ["0.0.0.0/0"] - } - egress { from_port = 0 to_port = 0