Skip to content

Commit

Permalink
Fixed #473 [rabbitmq]: ssl_verify (#474)
Browse files Browse the repository at this point in the history
Added key check for ssl_verify instance configuration
  • Loading branch information
iancward authored and olivielpeau committed Sep 28, 2017
1 parent ed46b65 commit d6f16bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/rabbitmq.yaml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ instances:
- rabbitmq_api_url: <%= i['api_url'] %>
rabbitmq_user: <%= i['user'] || 'guest' %>
rabbitmq_pass: <%= i['pass'] || 'guest' %>
ssl_verify: <%= i['ssl_verify'] || 'true' %>
ssl_verify: <%= i.key?('ssl_verify') ? i['ssl_verify'] : 'true' %>
# https://help.datadoghq.com/hc/en-us/articles/211590103-Tagging-RabbitMQ-queues-by-tag-family
tag_families: <%= i['tag_families'] || 'false' %>
<% if i.key?('tags') -%>
Expand Down

0 comments on commit d6f16bd

Please sign in to comment.