Skip to content

Commit

Permalink
Merge pull request #720 from Icinga/fix-influxdb
Browse files Browse the repository at this point in the history
fix wrong name of attribute ssl_enable for influxdb
  • Loading branch information
lbetz authored Jan 12, 2023
2 parents 9a585df + 1069341 commit a14409f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/feature/influxdb.pp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
)

$attrs_ssl = {
enable_ssl => true,
ssl_enable => true,
ssl_insecure_noverify => $ssl_noverify,
ssl_ca_cert => $cert['cacert_file'],
ssl_cert => $cert['cert_file'],
Expand All @@ -172,7 +172,7 @@
}
} else {
$attrs_ssl = {
enable_ssl => undef,
ssl_enable => undef,
ssl_insecure_noverify => undef,
ssl_ca_cert => undef,
ssl_cert => undef,
Expand Down

0 comments on commit a14409f

Please sign in to comment.