mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 08:51:37 +01:00
42 lines
772 B
INI
42 lines
772 B
INI
[icingaweb_db]
|
|
type = "db"
|
|
db = "pgsql"
|
|
host = "localhost"
|
|
port = "5432"
|
|
dbname = "icinga_web"
|
|
username = "icinga_web"
|
|
password = "{{ icinga_web_db_password }}"
|
|
charset = ""
|
|
use_ssl = "0"
|
|
|
|
[icinga_ido]
|
|
type = "db"
|
|
db = "pgsql"
|
|
host = "localhost"
|
|
port = "5432"
|
|
dbname = "icinga2"
|
|
username = "icinga2"
|
|
password = "{{ icinga_ido_password }}"
|
|
charset = ""
|
|
use_ssl = "0"
|
|
|
|
[ldap_auth]
|
|
type = "ldap"
|
|
hostname = "{{ ldap_server }}"
|
|
port = "389"
|
|
encryption = "none"
|
|
root_dn = "{{ ldap_user_dn }}"
|
|
bind_dn = "{{ ldap_bind_dn }}"
|
|
bind_pw = "{{ ldap_password }}"
|
|
timeout = "5"
|
|
|
|
[ldap_groups_auth]
|
|
type = "ldap"
|
|
hostname = "{{ ldap_server }}"
|
|
port = "389"
|
|
encryption = "none"
|
|
root_dn = "{{ ldap_group_dn }}"
|
|
bind_dn = "{{ ldap_bind_dn }}"
|
|
bind_pw = "{{ ldap_password }}"
|
|
timeout = "5"
|