Hi guys,
How can I use an array constant in Logstash's filter?
In my .env file I have a constant
BLACKLIST=192.168.3.131, 10.0.0.1
if [id.orig_h] in [${BLACKLIST}] {
drop {}
}
How can we declare an array as constant to use it within the filtering?
I've tried with [${BLACKLIST}] or ${BLACKLIST} but without luck 
Any help is much appreciated!
Thank you!