list.yml 930 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 | default(ansible_ssh_user, true) }}"
  16. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  17. with_items: groups[scratch_group] | default([]) | difference(['localhost']) | difference(groups.status_terminated)
  18. - name: List Hosts
  19. hosts: oo_list_hosts
  20. gather_facts: no
  21. tasks:
  22. - debug:
  23. msg: "public ip:{{ hostvars[inventory_hostname].gce_public_ip }} private ip:{{ hostvars[inventory_hostname].gce_private_ip }} deployment-type: {{ hostvars[inventory_hostname].group_names | oo_get_deployment_type_from_groups }}"