ansible-influxdb
ansible-influxdb copied to clipboard
Solving error: "No filter named 'changed'"
In ansible 2.10.4 when using v6.0.0 gives the error: The error was: template error while templating string: no filter named 'changed'
This is because "|" is deprecated. The solution is to replace "|" by "is"
Changes
Change "|" to "is" in main.yml file
Verify
Running the play-book installs influx-db successfully.