Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions resources/terraform/auto-drive/broker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,24 +123,6 @@ resource "aws_security_group" "rabbitmq_broker_primary" {
security_groups = [aws_security_group.auto_drive_sg.id] # Allow traffic from EC2 server's security group
}

# Allow from specific external IP address temporarily for testing purposes
ingress {
from_port = 5671
to_port = 5671
protocol = "tcp"
cidr_blocks = ["136.243.147.181/32"]
description = "Allow RabbitMQ access from external IP"
}

# Allow from specific external IP address temporarily for testing purposes
ingress {
from_port = 5672
to_port = 5672
protocol = "tcp"
cidr_blocks = ["136.243.147.181/32"]
description = "Allow RabbitMQ access from external IP"
}

egress {
from_port = 0
to_port = 0
Expand Down