xoxys.mosquitto/templates/etc/mosquitto/aclfile.j2

9 lines
243 B
Plaintext
Raw Normal View History

2018-11-07 20:44:06 +01:00
# {{ ansible_managed }}
2018-11-07 22:00:41 +01:00
{% for item in mosquitto_acl.values() %}
{% if not item.user == "all" %}
{{ item.user }}
2018-11-07 20:44:06 +01:00
{% endif %}
2018-11-07 22:00:41 +01:00
{{ item.acl_base if item.acl_base is defined else 'topic' }} {{ item.acl_policy }} {{ item.acl_topic }}
2018-11-07 20:44:06 +01:00
{% endfor %}