Open
Description
elasticsearch_tls_key_passphrase
with a $
character is not working. This is most likely due to using echo with "
quotation. This will lead to parameter expansion, while using '
wont.
~ >>> echo "test$var@test"
test@test
vs
~ >>> echo 'test$var@test'
test$var@test
This is done several places in elasticsearch-keystore.yml, like here