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

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

**Fixed Bugs**
- Fix typo in Ruby 1.8 template [\#23](https://github.com/pcfens/puppet-filebeat/issues/23)


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

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.6.0",
"version": "0.6.1",
"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/filebeat.yml.ruby18.erb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<%- if @filebeat_config['output']['elasticsearch']['tls']['certificate'] != nil -%>
certificate: "<%= @filebeat_config['output']['elasticsearch']['tls']['certificate'] %>"
<%- end -%>
<%- if @filebeat_config['output']['elasticsearch']['tls']['certifcate_key'] != nil -%>
<%- if @filebeat_config['output']['elasticsearch']['tls']['certificate_key'] != nil -%>
certificate_key: "<%= @filebeat_config['output']['elasticsearch']['tls']['certificate_key'] %>"
<%- end -%>
<%- if @filebeat_config['output']['elasticsearch']['tls']['insecure'] != nil -%>
Expand Down