Hello RabbitMQ Team,
I would like to limit number of queues which user can create. I have checked the documentation and found that there are some limits for max channels open per connection and vhost queue limitation (number of queues per vhost) which is not exactly what I want.
I figured out that I could do that via rabbitmq_auth_backend_ldap (which I use), but I would have to limit queue name suffix as well and this would not be enough for me:
{permission, configure,
{match,
{ string, "${name}" },
{ string, "^"
"(queue\\.${username}\\.number1)"
"|"
"(queue\\.${username}\\.number2)"
...
"$"
}
}
}
Am I missing an existing solution or is there something that would solve my issue planned for a future release?
Thank you
Jiri Simak