Skip to content

Commit

Permalink
add rabbitmq discovery epmd port 4369 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvasilenko authored and antonbabenko committed Mar 21, 2019
1 parent 9608af8 commit 8327f60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/rabbitmq/auto_values.tf
Expand Up @@ -6,7 +6,7 @@
variable "auto_ingress_rules" {
description = "List of ingress rules to add automatically"
type = "list"
default = ["rabbitmq-5671-tcp", "rabbitmq-5672-tcp", "rabbitmq-15672-tcp", "rabbitmq-25672-tcp"]
default = ["rabbitmq-4369-tcp", "rabbitmq-5671-tcp", "rabbitmq-5672-tcp", "rabbitmq-15672-tcp", "rabbitmq-25672-tcp"]
}

variable "auto_ingress_with_self" {
Expand Down
3 changes: 2 additions & 1 deletion rules.tf
Expand Up @@ -105,6 +105,7 @@ variable "rules" {
puppet-tcp = [8140, 8140, "tcp", "Puppet"]

# RabbitMQ
rabbitmq-4369-tcp = [4369, 4369, "tcp", "RabbitMQ epmd"]
rabbitmq-5671-tcp = [5671, 5671, "tcp", "RabbitMQ"]
rabbitmq-5672-tcp = [5672, 5672, "tcp", "RabbitMQ"]
rabbitmq-15672-tcp = [15672, 15672, "tcp", "RabbitMQ"]
Expand Down Expand Up @@ -314,7 +315,7 @@ variable "auto_groups" {
}

rabbitmq = {
ingress_rules = ["rabbitmq-5671-tcp", "rabbitmq-5672-tcp", "rabbitmq-15672-tcp", "rabbitmq-25672-tcp"]
ingress_rules = ["rabbitmq-4369-tcp", "rabbitmq-5671-tcp", "rabbitmq-5672-tcp", "rabbitmq-15672-tcp", "rabbitmq-25672-tcp"]
ingress_with_self = ["all-all"]
egress_rules = ["all-all"]
}
Expand Down

0 comments on commit 8327f60

Please sign in to comment.