Skip to content

Commit

Permalink
Correct bugs found in field around new TLS changes (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan-M authored Feb 3, 2022
1 parent 5bb6f76 commit 275e041
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions plugins/rsyslog.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Plugin Info
version: 0.0.4
version: 0.0.5
title: Rsyslog
description: Log parser for Rsyslog
parameters:
Expand Down Expand Up @@ -50,7 +50,7 @@ parameters:
- name: tls_enable
label: "Enable TLS"
description: Should TLS be used?
type: boolean
type: bool
default: false
advanced_config: true
relevant_if:
Expand Down Expand Up @@ -125,7 +125,7 @@ pipeline:
enable: {{ $tls_enable }}
certificate: {{ $tls_certificate }}
private_key: {{ $tls_private_key }}
min_version: {{ $tls_min_version }}
min_version: "{{ $tls_min_version }}"
add_labels: true
output: rsyslog_parser
# {{ end }}
Expand Down
6 changes: 3 additions & 3 deletions plugins/syslog.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Plugin Info
version: 0.0.10
version: 0.0.11
title: Syslog
description: Log parser for Syslog
supported_platforms:
Expand Down Expand Up @@ -54,7 +54,7 @@ parameters:
- name: tls_enable
label: "Enable TLS"
description: Should TLS be used?
type: boolean
type: bool
default: false
advanced_config: true
relevant_if:
Expand Down Expand Up @@ -129,7 +129,7 @@ pipeline:
enable: {{ $tls_enable }}
certificate: {{ $tls_certificate }}
private_key: {{ $tls_private_key }}
min_version: {{ $tls_min_version }}
min_version: "{{ $tls_min_version }}"
add_labels: true
output: syslog_parser
# {{ end }}
Expand Down
6 changes: 3 additions & 3 deletions plugins/syslogng.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Plugin Info
version: 0.0.4
version: 0.0.5
title: Syslog-ng
description: Log parser for Syslog-ng
parameters:
Expand Down Expand Up @@ -50,7 +50,7 @@ parameters:
- name: tls_enable
label: "Enable TLS"
description: Should TLS be used?
type: boolean
type: bool
default: false
advanced_config: true
relevant_if:
Expand Down Expand Up @@ -125,7 +125,7 @@ pipeline:
enable: {{ $tls_enable }}
certificate: {{ $tls_certificate }}
private_key: {{ $tls_private_key }}
min_version: {{ $tls_min_version }}
min_version: "{{ $tls_min_version }}"
add_labels: true
output: syslogng_parser
# {{ end }}
Expand Down
2 changes: 1 addition & 1 deletion plugins/tcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pipeline:
enable: {{ $enable_tls }}
certificate: {{ $certificate_file }}
private_key: {{ $private_key_file }}
min_version: {{ $min_version }}
min_version: "{{ $min_version }}"
# {{ end }}

- type: move
Expand Down

0 comments on commit 275e041

Please sign in to comment.