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

Declare default queue type when creating a new virtual host

Open zenhighzer opened this issue 1 year ago • 0 comments

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

grafik

Maybe an ansible-example could look like this:

- name: Ensure that the vhost /test exists.
  community.rabbitmq.rabbitmq_vhost:
    name: /test
    state: present
    default_queue_type: "quorum" 

zenhighzer avatar Feb 28 '24 14:02 zenhighzer