Showing with 7 additions and 2 deletions.
  1. +5 −0 CHANGELOG.md
  2. +1 −1 metadata.json
  3. +1 −1 templates/filebeat5.yml.erb
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changelog
## Unreleased
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.3...HEAD)

## [v0.8.4](https://github.com/pcfens/puppet-filebeat/tree/v0.8.4)
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.3...v0.8.4)

- Fix regression: Add the SSL label to the filebeat 5 template. [\53](https://github.com/pcfens/puppet-filebeat/pull/53)

## [v0.8.3](https://github.com/pcfens/puppet-filebeat/tree/v0.8.3)
[Full Changelog](https://github.com/pcfens/puppet-filebeat/compare/v0.8.2...v0.8.3)

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pcfens-filebeat",
"version": "0.8.3",
"version": "0.8.4",
"author": "pcfens",
"license": "Apache-2.0",
"summary": "A module to install and manage the filebeat log shipper",
Expand Down
2 changes: 1 addition & 1 deletion templates/filebeat5.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ output.logstash:
<%- if @filebeat_config['output']['logstash']['proxy_use_local_resolver'] != nil -%>
proxy_use_local_resolver: <%= @filebeat_config['output']['logstash']['proxy_use_local_resolver'] %>
<%- end -%>
<%- if @filebeat_config['output']['logstash']['ssl'] != nil -%>
ssl:
<%- if @filebeat_config['output']['logstash']['ssl']['enabled'] == false -%>
enabled: false
<%- else -%>
Expand Down