config.yml 548 B

12345678910111213141516171819202122
  1. ---
  2. - name: "populate oo_hosts_to_config host group if needed"
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_host_group_exp if it's set
  7. add_host: "name={{ item }} groups=oo_hosts_to_config"
  8. with_items: "{{ oo_host_group_exp | default(['']) }}"
  9. when: oo_host_group_exp is defined
  10. - name: "Configure instances"
  11. hosts: oo_hosts_to_config
  12. connection: ssh
  13. user: root
  14. vars_files:
  15. - vars.yml
  16. - "vars.{{ oo_env }}.yml"
  17. roles:
  18. - os_ipv6_disable
  19. - ansible
  20. - ansible_tower
  21. - os_env_extras