Skip to content

Commit

Permalink
Reorganizes defaults vars file
Browse files Browse the repository at this point in the history
No functional changes, but places the most relevant and readable vars
near the top now, so the file is more readable. Will include in README
as-is.
  • Loading branch information
Conor Schaefer committed Apr 21, 2016
1 parent cdbe2d4 commit abdb5d2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
---
# defaults file for logstash-client
# The libbeat packages to install. Options: filebeat, topbeat, packetbeat.
logstash_client_beats_packages:
- filebeat
- topbeat

logstash_client_ssl_certificate_base_directory: /etc/pki/tls/certs

# Set to a cert filepath in order to copy to host and enable TLS
# for shipping logs. TLS is disabled by default.
logstash_client_ssl_certificate: ""
logstash_client_ssl_certificate_fullpath: "{{ logstash_client_ssl_certificate_base_directory }}/{{ logstash_client_ssl_certificate | basename }}"
logstash_client_ssl_certificate_fullpath: >-
"{{ logstash_client_ssl_certificate_base_directory }}/{{ logstash_client_ssl_certificate | basename }}"
# Sane default of localhost. Override to set to the IP address of the Logstash server.
# You can also inspect group membership, e.g.:
Expand Down Expand Up @@ -54,8 +59,3 @@ logstash_client_logfiles:
logstash_client_extra_logfiles: []

logstash_client_combined_logfiles: "{{ logstash_client_logfiles + logstash_client_extra_logfiles }}"

# filebeats, topbeats, etc.
logstash_client_beats_packages:
- filebeat
- topbeat

0 comments on commit abdb5d2

Please sign in to comment.