Ubuntu Pastebin

Paste from jamespage at Fri, 4 Dec 2015 10:34:41 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% if amqp.host or amqp.hosts -%}
[oslo_messaging_rabbit]
rabbit_userid = {{ amqp.user }}
rabbit_virtual_host = {{ amqp.vhost }}
rabbit_password = {{ amqp.password }}
{% if amqp.hosts -%}
rabbit_hosts = {{ amqp.hosts }}
{% if amqp.ha_queues -%}
rabbit_ha_queues = True
rabbit_durable_queues = False
{% endif -%}
{% else -%}
rabbit_host = {{ amqp.host }}
{% endif -%}
{% if amqp.ssl_port -%}
rabbit_use_ssl = True
rabbit_port = {{ amqp.ssl_port }}
{% if amqp.ssl_ca -%}
kombu_ssl_ca_certs = {{ amqp.ssl_ca }}
{% endif -%}
{% endif -%}
{% endif -%}
Download as text