community.rabbitmq icon indicating copy to clipboard operation
community.rabbitmq copied to clipboard

Manage RabbitMQ with Ansible

Results 52 community.rabbitmq issues
Sort by recently updated
recently updated
newest added

##### SUMMARY This PR defines an action group for all collection modules. When same module is frequently called with same arguments, we can use `module_defaults` to avoid duplications. Since Ansible...

##### SUMMARY Currently you can't do: ``` - name: Enable all feature flags on 'rabbit@node-1' community.rabbitmq.rabbitmq_feature_flag: name: all node: rabbit@node-1 ``` As shown here: https://www.rabbitmq.com/docs/upgrade#enable-required-feature-flags-before-attempting-the-upgrade Since we check for the...

##### SUMMARY Feature request similar to https://github.com/ansible-collections/community.rabbitmq/issues/76 : rabbitmq_vhost uses `rabbitmqctl` for managing users. The idea is to add a choice for allowing to use API as well. ##### ISSUE...

##### SUMMARY This is useful to enable all feature flags before an upgrade, see: - https://www.rabbitmq.com/docs/upgrade#enable-required-feature-flags-before-attempting-the-upgrade - https://www.rabbitmq.com/docs/feature-flags#how-to-enable-feature-flags I switched to using the json output instead of attempting to parse...

##### SUMMARY Fixes #160 ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME community.rabbitmq.rabbitmq_binding ##### ADDITIONAL INFORMATION Tested locally by running the same task twice. The second run shows...

##### SUMMARY To Add user in the Remote Rabbitmq, community.rabbitmq.rabbitmq_user didnt have options need some help. ##### ISSUE TYPE - Documentation Report ##### COMPONENT NAME community.rabbitmq.rabbitmq_user ##### ANSIBLE VERSION ```paste...

##### SUMMARY Currently this module only allows policies that `apply_to` either `all`, `queues` or `exchanges` (https://github.com/ansible-collections/community.rabbitmq/blob/1341c198b2fc85cd8f88c82212451f555c5dd4a4/plugins/modules/rabbitmq_policy.py#L34), while RabbitMQ has more options: > The "apply-to" argument can be one of the...

##### SUMMARY The **rabbitmq_policy** module currently supports the management of "standard" policies for RabbitMQ. Nevertheless, it does not allow to manage [operator policies ](https://www.rabbitmq.com/parameters.html#operator-policies). ##### ISSUE TYPE - Feature Idea...

##### SUMMARY Declare default queue type when creating a new virtual host ##### ISSUE TYPE - Feature Idea ##### COMPONENT NAME rabbitmq_vhost module ##### ADDITIONAL INFORMATION RabbitMQ Docs: https://rabbitmq-website.pages.dev/docs/vhosts#default-queue-type Maybe...

##### SUMMARY I'm trying to create rabbitmq users with the rabbitmq_user module, but this keeps failing with the error message: **Could not determine the version of the RabbitMQ server.** I'm...