Open jakubgs opened 2 years ago
Actually, after a bunch of fiddling this is what works:
key_prefix "consul-alerts/" {
policy = "write"
}
service_prefix "" {
policy = "read"
}
node_prefix "" {
policy = "read"
}
event_prefix "" {
policy = "read"
}
session_prefix "" {
policy = "write"
}
I used the policy that's recommended in the Configuration seciont of README:
But that resulted in errors like these from
consul-alerts
:And these on the Consul agent side:
Changing the policy from
session
tosession_prefix
did fix that though:Not sure what that's about, but maybe this helps someone.