mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 08:28:34 +01:00
feat: icingaweb2 auth config
This commit is contained in:
41
roles/monitoring-master/templates/icingaweb2/resources.ini
Normal file
41
roles/monitoring-master/templates/icingaweb2/resources.ini
Normal file
@@ -0,0 +1,41 @@
|
||||
[icingaweb_db]
|
||||
type = "db"
|
||||
db = "pgsql"
|
||||
host = "localhost"
|
||||
port = "5432"
|
||||
dbname = "icinga_web"
|
||||
username = "icinga_web"
|
||||
password = "HISTORY_PURGED_SECRET"
|
||||
charset = ""
|
||||
use_ssl = "0"
|
||||
|
||||
[icinga_ido]
|
||||
type = "db"
|
||||
db = "pgsql"
|
||||
host = "localhost"
|
||||
port = "5432"
|
||||
dbname = "icinga2"
|
||||
username = "icinga2"
|
||||
password = "HISTORY_PURGED_SECRET"
|
||||
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"
|
||||
Reference in New Issue
Block a user