Skip to content

Commit

Permalink
Merge pull request #76 from hs-hannover/fix_user_creation
Browse files Browse the repository at this point in the history
fix(): Pass proper args to the rabbitmq user state
  • Loading branch information
noelmcloughlin authored Jun 16, 2021
2 parents ad7591f + bdc94f6 commit 8532315
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rabbitmq/config/user/install.sls
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ include:
rabbitmq-config-user-present-{{ name }}:
rabbitmq_user.present:
- name: {{ name }}
- {{ user|yaml }}
{% for value in user %}
- {{ value | yaml }}
{% endfor %}
- require:
- sls: {{ sls_service_running }}
- sls: {{ sls_config_vhost }}
Expand Down

0 comments on commit 8532315

Please sign in to comment.