Tags: logstash-plugins/logstash-input-tcp
Tags
Mark deprecated SSL settings as obsolete (#228) * Mark deprecated SSL settings as obsolete This commit marks the following SSL settings as obsolete: `ssl_cert`, which should be replaced by `ssl_certificate` `ssl_enable`, which should be replaced by `ssl_enabled` `ssl_verify`, which should be replaced by `ssl_client_authentication` when `mode` is `server` or `ssl_verification_mode`when mode is `client` --------- Co-authored-by: Cas Donoghue <cas.donoghue@gmail.com> Co-authored-by: Karen Metts <35154725+karenzone@users.noreply.github.com>
Standardize and add SSL settings (#213) This commit reviewed and deprecated the following SSL settings to comply with Logstash's naming convention: - ssl_enable in favor of ssl_enabled - ssl_cert in favor of ssl_certificate - ssl_verify in favor of ssl_client_authentication when mode is server - ssl_verify in favor of ssl_verification_mode when mode is client It also added a few SSL configuration validations: - Added a warning log when ssl_* configs are set but ssl_enabled => false - ssl_ceritifcate & ssl_key config validation, including checking if both files are readable. - Ensure no ssl_client_authentication when mode => client - Ensure no ssl_verification_mode when mode => server - Ensure an ssl_certificate is provided when mode => server - Ensure ssl_certificate_authorities is provided when mode => server and it's using the new configuration (ssl_client_authentication)
PreviousNext