Whitelist support
Wonkstar opened this issue · 2 comments
Wonkstar commented
Whitelist support
GeorgFleig commented
You can use negative look-ahead as a workaround to convert the blacklist to a whitelist. For example ^(?!abc)
to only list services starting with abc.
fgather commented
We could certainly think about a whitelist, but then we'll need to declare which list should take precedence over the other.
Personally, I favor the workaround @GeorgFleig mentioned.