aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/rabbitmq_vhosts.yml
blob: 790ac18d1c18c062ed4a2f5babda973ea7102c12 (plain) (blame)
1
2
3
4
5
6
7
---
- name: Create vhosts
  rabbitmq_vhost:
    name: "{{ item['name'] }}"
    state: "{{ item['state'] }}"
  with_items: "{{ rabbitmq_extra_vhosts }}"
  run_once: "{{ rabbitmq_enable_clustering is defined and rabbitmq_enable_clustering }}"