list.yml 766 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Generate oo_list_hosts group
  3. hosts: localhost
  4. gather_facts: no
  5. vars_files:
  6. - vars.yml
  7. tasks:
  8. - set_fact: scratch_group=tag_env_{{ cluster_id }}
  9. when: cluster_id != ''
  10. - set_fact: scratch_group=all
  11. when: cluster_id == ''
  12. - add_host:
  13. name: "{{ item }}"
  14. groups: oo_list_hosts
  15. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  16. ansible_ssh_host: "{{ hostvars[item].ansible_ssh_host | default(item) }}"
  17. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  18. with_items: groups[scratch_group] | default([]) | difference(['localhost'])
  19. - name: List Hosts
  20. hosts: oo_list_hosts
  21. tasks:
  22. - debug:
  23. msg: 'public:{{ansible_ssh_host}} private:{{ansible_default_ipv4.address}}'