Skip to content
This repository was archived by the owner on May 31, 2023. It is now read-only.

Commit a5f02f5

Browse files
bitchkatpaulfantom
authored andcommitted
add ansible_remote_cache (#173)
1 parent bee2c34 commit a5f02f5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

defaults/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ grafana_database:
6464
# max_open_conn: ""
6565
# log_queries: ""
6666

67+
# Remote cache
68+
grafana_remote_cache: {}
69+
6770
# User management and registration
6871
grafana_welcome_email_on_sign_up: false
6972
grafana_users:

templates/grafana.ini.j2

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ root_url = {{ grafana_url }}
3737
{% endif %}
3838
{% endfor %}
3939

40+
# Remote cache
41+
[remote_cache]
42+
{% for k,v in grafana_remote_cache.items() %}
43+
{{ k }} = {{ v }}
44+
{% endfor %}
45+
4046
# Security
4147
[security]
4248
{% for k,v in grafana_security.items() %}

0 commit comments

Comments
 (0)