15 lines
305 B
YAML
15 lines
305 B
YAML
---
|
|
- name: Deploy KVM virtual machines
|
|
ansible.builtin.import_playbook: >-
|
|
include/deploy-kvm-guest.yml myhosts=devel01.home.foo.sh
|
|
|
|
- name: Configure instance
|
|
hosts: devel01.home.foo.sh
|
|
user: root
|
|
gather_facts: true
|
|
|
|
vars_files:
|
|
- "{{ ansible_private }}/vars.yml"
|
|
|
|
roles:
|
|
- base
|