list.yml 841 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Generate oo_list_hosts group
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. - set_fact: scratch_group=tag_clusterid-{{ cluster_id }}
  11. when: cluster_id != ''
  12. - set_fact: scratch_group=all
  13. when: cluster_id == ''
  14. - add_host:
  15. name: "{{ item }}"
  16. groups: oo_list_hosts
  17. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  18. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  19. with_items: groups[scratch_group] | default([], true) | difference(['localhost']) | difference(groups.status_terminated | default([], true))
  20. - name: List instance(s)
  21. hosts: oo_list_hosts
  22. gather_facts: no
  23. tasks:
  24. - debug:
  25. msg: "private ip:{{ hostvars[inventory_hostname].gce_private_ip }}"