--- - name: Ansible failure with delegate_to and "random" filter hosts: nova_compute gather_facts: no user: root environment: "{{ deployment_environment_variables | default({}) }}" tasks: - ping: delegate_to: "{{ random_conductor }}" run_once: true vars: random_conductor: "{{ groups['nova_conductor'] | random }}"