Skip to content

Commit 39f4057

Browse files
committed
Allow taurus AD private instance access to broker
1 parent c446176 commit 39f4057

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

resources/terraform/auto-drive/broker.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,15 @@ resource "aws_security_group" "rabbitmq_broker_primary" {
123123
security_groups = [aws_security_group.auto_drive_sg.id] # Allow traffic from EC2 server's security group
124124
}
125125

126+
# Allow from specific external IP address temporarily for testing purposes
127+
ingress {
128+
from_port = 15671
129+
to_port = 15671
130+
protocol = "tcp"
131+
cidr_blocks = ["136.243.147.181/32"]
132+
description = "Allow RabbitMQ Web UI access from external IP"
133+
}
134+
126135
egress {
127136
from_port = 0
128137
to_port = 0

0 commit comments

Comments
 (0)