Skip to content

Commit

Permalink
fix(user): pass proper args to the rabbitmq state
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Ahrens committed Jun 16, 2021
1 parent ad7591f commit bdc94f6
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 bdc94f6

Please sign in to comment.