We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c446176 commit 39f4057Copy full SHA for 39f4057
resources/terraform/auto-drive/broker.tf
@@ -123,6 +123,15 @@ resource "aws_security_group" "rabbitmq_broker_primary" {
123
security_groups = [aws_security_group.auto_drive_sg.id] # Allow traffic from EC2 server's security group
124
}
125
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
+
135
egress {
136
from_port = 0
137
to_port = 0
0 commit comments