Within an Ansible vars file, I want to convert a dict of dicts into a list of dicts that I can pass to an external role from Ansible Galaxy.
Input:
{{ postgres_users.values() | list }} seems to do it.
{{ postgres_users.values() | list }}