Skip to content

Commit

Permalink
Merge pull request #315 from Icinga/fix/302-icingadb-database-tls-ins…
Browse files Browse the repository at this point in the history
…ecure-variable-mismatch

Use correct variable for insecure tls connection
  • Loading branch information
Donien authored Jul 31, 2024
2 parents 1a57b87 + ae7093a commit a1ef79b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/fix_issue_302.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- "The Icinga DB config template used two different variables to configure (in)secure TLS communication with the database. It now uses :code:`icingadb_database_tls_insecure` for both the condition and as the actual value (#302)."
2 changes: 1 addition & 1 deletion roles/icingadb/templates/icingadb.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ database:
ca: {{ icingadb_database_ca }}
{% endif %}
{% if icingadb_database_tls_insecure is defined %}
insecure: {{ icingadb_database_insecure }}
insecure: {{ icingadb_database_tls_insecure }}
{% endif %}


Expand Down

0 comments on commit a1ef79b

Please sign in to comment.