Skip to content

Commit

Permalink
Remove listener to port 19530 of ec2 milvus instance, since it only n…
Browse files Browse the repository at this point in the history
…eeds to forward to ECS
  • Loading branch information
Miguel Elhaiek committed Apr 5, 2024
1 parent 8476aaa commit 06ca1d5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ resource "aws_security_group" "nlb_sg" {
description = "Security group for NLB"
vpc_id = aws_vpc.vectorstore_vpc.id

# port for ec2 milvus listener
ingress {
from_port = 19530
to_port = 19530
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
# # port for ec2 milvus listener
# ingress {
# from_port = 19530
# to_port = 19530
# protocol = "tcp"
# cidr_blocks = ["0.0.0.0/0"]
# }

# port for ECS fargate container API:
ingress {
Expand Down

0 comments on commit 06ca1d5

Please sign in to comment.