charm-murano/src/templates/parts/rabbitmq

11 lines
268 B
Plaintext

{% if amqp.host or amqp.hosts -%}
rabbit_userid = {{ amqp.username }}
rabbit_password = {{ amqp.password }}
rabbit_virtual_host = {{ amqp.vhost }}
{% if amqp.hosts -%}
rabbit_hosts = {{ amqp.hosts }}
{% else -%}
rabbit_host = {{ amqp.host }}
{% endif -%}
{% endif -%}