Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
 Fix problem with this issue ansible-collections/community.rabbitmq#53
  • Loading branch information
okassov authored Sep 22, 2021
1 parent 2b4b22a commit 91c3910
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tasks/rabbitmq_users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
rabbitmq_user:
name: "{{ item['name'] }}"
password: "{{ item['password'] }}"
node: "rabbit@{{ ansible_fqdn }}"
vhost: "{{ item['vhost']|default(omit) }}"
configure_priv: "{{ item['configure_priv']|default(omit) }}"
read_priv: "{{ item['read_priv']|default(omit) }}"
Expand All @@ -23,6 +24,7 @@
rabbitmq_user:
name: "{{ item['name'] }}"
password: "{{ item['password'] }}"
node: "rabbit@{{ ansible_fqdn }}"
vhost: "{{ item['vhost']|default(omit) }}"
configure_priv: "{{ item['configure_priv']|default(omit) }}"
read_priv: "{{ item['read_priv']|default(omit) }}"
Expand Down

0 comments on commit 91c3910

Please sign in to comment.