On Feb 04, Jan Kowalsky wrote:
no, there is no other role with this name. To be sure, I deleted my
custom roles directory completely. Error persists.
What's your Ansible version?
Put this playbook in a project directory, playbooks/test.yml:
#v+
---
- name: Test Ansible plugins
hosts: 'all'
roles:
- role: debops.ansible_plugins
tasks:
- name: Debug the filter
debug:
msg: '{{ [{"name": "test"}] | parse_kv_config }}'
#v-
Then run:
debops test -l <host>
Does it return without error with some YAML dictionary data?
Maciej