Fix a wrong spelled variable.

This commit is contained in:
Andrea Dell'Amico 2022-12-20 13:13:22 +01:00
parent d108c3dd75
commit 26df2b0dcb
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ grafana_conf:
- {section: 'server', option: 'http_addr', value: '{{ grafana_bind_ip_address }}', state: present} - {section: 'server', option: 'http_addr', value: '{{ grafana_bind_ip_address }}', state: present}
- {section: 'server', option: 'http_port', value: '{{ grafana_http_port }}', state: present} - {section: 'server', option: 'http_port', value: '{{ grafana_http_port }}', state: present}
- {section: 'server', option: 'domain', value: '{{ grafana_domain_name }}', state: present} - {section: 'server', option: 'domain', value: '{{ grafana_domain_name }}', state: present}
- {section: 'server', option: 'enforce_domain', value: '{{ grafana_enforce_dns_name }}', state: present} - {section: 'server', option: 'enforce_domain', value: '{{ grafana_enforce_dom_name | lower }}', state: present}
- {section: 'database', option: 'type', value: '{{ grafana_db_type }}', state: present} - {section: 'database', option: 'type', value: '{{ grafana_db_type }}', state: present}
- {section: 'database', option: 'host', value: '{{ grafana_db_hostport }}', state: present} - {section: 'database', option: 'host', value: '{{ grafana_db_hostport }}', state: present}
- {section: 'database', option: 'name', value: '{{ grafana_db_name }}', state: present} - {section: 'database', option: 'name', value: '{{ grafana_db_name }}', state: present}