list.yml 593 B

1234567891011121314151617
  1. ---
  2. - name: Generate oo_list_hosts group
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - set_fact: scratch_group=tag_env-{{ cluster_id }}
  7. when: cluster_id != ''
  8. - set_fact: scratch_group=all
  9. when: scratch_group is not defined
  10. - add_host: name={{ item }} groups=oo_list_hosts
  11. with_items: groups[scratch_group] | difference(['localhost']) | difference(groups.status_terminated)
  12. - name: List Hosts
  13. hosts: oo_list_hosts
  14. gather_facts: no
  15. tasks:
  16. - debug: msg="public:{{hostvars[inventory_hostname].gce_public_ip}} private:{{hostvars[inventory_hostname].gce_private_ip}}"