blob: 05969c7bab52f7aa82e92d5185e1aab0182505ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# icinga2
Installs Icinga2 Monitor standalone node and Icingaweb2 with integrated MariaDB Databse
Default settings
```
---
icinga_ido_db_pw: 'changeme'
icinga_web_db_pw: 'changeme'
icinga:
# icingaweb2 api user is created automatically with random password
api_users:
- name: 'test'
password: 'changeme'
permissions: '[ ]'
icingaweb:
cert:
use_ssl: true
cert: '/etc/ssl/cert/ssl-cert-snakeoil.pem'
key: '/etc/ssl/private/ssl-cert-snakeoil.key'
ldap:
use_ldap: false
host: 'localhost'
port: '389'
# none / starttsl / ssl?
encryption: 'none'
root_dn: ''
bind_dn: ''
bind_pw: ''
user_class: 'inetOrgPerson'
user_name_attribute: 'uid'
filter: ''
groups:
base_dn: ''
group_member_attribute: 'cn'
group_class: 'groupOfNames'
group_filter: 'cn=*'
user_base_dn: ''
user_class: 'posixAccount'
user_name_attribute: 'uid'
roles:
- name: Administrators
users: 'admin'
permissions: '*'
groups: 'Administrators'
enabled_modules:
- monitoring
```
|