aboutsummaryrefslogtreecommitdiffstats
path: root/crates/rule-executor/rule-executor.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rule-executor/rule-executor.toml')
-rw-r--r--crates/rule-executor/rule-executor.toml33
1 files changed, 33 insertions, 0 deletions
diff --git a/crates/rule-executor/rule-executor.toml b/crates/rule-executor/rule-executor.toml
new file mode 100644
index 0000000..dd64828
--- /dev/null
+++ b/crates/rule-executor/rule-executor.toml
@@ -0,0 +1,33 @@
+[application]
+env = "development"
+
+[monitoring]
+log-level = "warden_rule=trace,info"
+opentelemetry-endpoint = "http://localhost:4317"
+loki-endpoint = "http://localhost:3100"
+
+[misc]
+config-endpoint = "http://localhost:1304"
+
+[misc.nats]
+stream-name = "rules"
+subjects = ["rule.>"]
+durable-name = "rules"
+destination-prefix = "typology-rule"
+
+[misc.nats.config]
+stream = "configuration"
+reload-subject = "configuration.reload"
+
+[database]
+pool_size = 100
+port = 5432
+name = "pseudonyms"
+host = "localhost"
+password = "password"
+user = "postgres"
+
+[nats]
+hosts = ["nats://localhost:4222"]
+
+# vim:ft=toml