<!--- Verify first that your feature was not already discussed on GitHub --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### 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 <img width="430" alt="grafik" src="https://github.com/ansible-collections/community.rabbitmq/assets/65350020/d8a15569-70b8-4ad4-b4fc-ab4d7a817b80"> 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" ```