config.yml 581 B

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