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 30b9c6d commit c8f85cfCopy full SHA for c8f85cf
resources/terraform/auto-drive/broker.tf
@@ -115,6 +115,14 @@ resource "aws_security_group" "rabbitmq_broker_primary" {
115
security_groups = [aws_security_group.auto_drive_sg.id] # Allow traffic from EC2 server's security group
116
}
117
118
+ # enable RabbitMQ web management console (only accessible from the VPC)
119
+ ingress {
120
+ from_port = 15671
121
+ to_port = 15671
122
+ protocol = "tcp"
123
+ security_groups = [aws_security_group.auto_drive_sg.id] # Allow traffic from EC2 server's security group
124
+ }
125
+
126
egress {
127
from_port = 0
128
to_port = 0
0 commit comments