Skip to content

Commit

Permalink
update elastic.yml to allow for ssl options (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexBevan authored and olivielpeau committed Sep 28, 2017
1 parent d0e71d8 commit 282c350
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions templates/default/elastic.yaml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ instances:
<% unless i["timeout"].nil? %>
timeout: <%= i["timeout"] %>
<% end %>
<% unless i["ssl_verify"].nil? %>
ssl_verify: <%= i["ssl_verify"] %>
<% end %>
<% unless i["ssl_cert"].nil? %>
ssl_cert: <%= i["ssl_cert"] %>
<% end %>
<% unless i["ssl_key"].nil? %>
ssl_key: <%= i["ssl_key"] %>
<% end %>
<% if i.key?('tags') -%>
tags:
<% i['tags'].each do |t| -%>
Expand Down

0 comments on commit 282c350

Please sign in to comment.