From 64214b7919757bc349248397042eada44a58e7c7 Mon Sep 17 00:00:00 2001 From: Tobias Bauriedel Date: Fri, 29 Dec 2023 15:25:11 +0100 Subject: [PATCH] fix variable --- roles/influxdb/README.md | 1 + roles/influxdb/templates/config.toml.j2 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/influxdb/README.md b/roles/influxdb/README.md index 823ee17..72add9a 100644 --- a/roles/influxdb/README.md +++ b/roles/influxdb/README.md @@ -9,6 +9,7 @@ At the moment the configuration is very basic. Over time, this role will be expa * `influxdb_influxdb_bolt_path`: InfluxDB bolt-path * `influxdb_influxdb_engine_path`: InfluxDB engine-path +* `influxdb_influxdb_extra_config`: Extra configuration Defaults can be viewed in vars/defaults.yml diff --git a/roles/influxdb/templates/config.toml.j2 b/roles/influxdb/templates/config.toml.j2 index 8a46786..901a885 100644 --- a/roles/influxdb/templates/config.toml.j2 +++ b/roles/influxdb/templates/config.toml.j2 @@ -3,4 +3,4 @@ bolt-path = {{ influxdb_influxdb_bolt_path }} engine-path = {{ influxdb_influxdb_engine_path }} -{{ redis_extra_config }} \ No newline at end of file +{{ influxdb_influxdb_extra_config }} \ No newline at end of file