24 lines
820 B
YAML
Executable file
24 lines
820 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy Grafana
|
|
- hosts: grafana.adm.auro.re
|
|
vars:
|
|
grafana:
|
|
root_url: https://grafana.auro.re
|
|
database:
|
|
type: postgres
|
|
host: 10.128.0.95
|
|
name: grafana
|
|
user: grafana
|
|
password: "{{ vault_postgresql_grafana_passwd }}"
|
|
ldap:
|
|
host: "re2o-ldap.adm.auro.re ldap-replica-ovh.adm.auro.re 10.128.0.21 10.128.0.149"
|
|
bind_dn: cn=grafana,ou=service-users,dc=auro,dc=re
|
|
bind_password: "{{ vault_ldap_grafana_password }}"
|
|
search_base_dns: "cn=Utilisateurs,dc=auro,dc=re"
|
|
group_search_base_dns: "ou=posix,ou=groups,dc=auro,dc=re"
|
|
editors_group_dn:
|
|
- cn=sudoldap,ou=posix,ou=groups,dc=auro,dc=re
|
|
- cn=technicien,ou=posix,ou=groups,dc=auro,dc=re
|
|
roles:
|
|
- grafana
|