config.yml 453 B

1234567891011121314151617
  1. - name: "populate oo_hosts_to_config host group if needed"
  2. hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: Evaluate oo_host_group_exp
  6. add_host: "name={{ item }} groups=oo_hosts_to_config"
  7. with_items: "{{ oo_host_group_exp | default('') }}"
  8. when: oo_host_group_exp is defined
  9. - name: "Configure instances"
  10. hosts: oo_hosts_to_config
  11. connection: ssh
  12. user: root
  13. vars_files:
  14. - vars.yml
  15. roles:
  16. - ../../../roles/base_os