community.rabbitmq.rabbitmq_binding – Manage rabbitMQ bindings¶
Note
This plugin is part of the community.rabbitmq collection (version 1.0.3).
To install it use: ansible-galaxy collection install community.rabbitmq
.
To use it in a playbook, specify: community.rabbitmq.rabbitmq_binding
.
Requirements¶
The below requirements are needed on the host that executes this module.
requests >= 1.0.0
Parameters¶
Examples¶
# Bind myQueue to directExchange with routing key info
- community.rabbitmq.rabbitmq_binding:
name: directExchange
destination: myQueue
type: queue
routing_key: info
# Bind directExchange to topicExchange with routing key *.info
- community.rabbitmq.rabbitmq_binding:
name: topicExchange
destination: topicExchange
type: exchange
routing_key: '*.info'
Authors¶
Manuel Sousa (@manuel-sousa)