diff options
author | binary <me@rgoncalves.se> | 2020-11-10 22:35:02 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-10 22:35:02 +0100 |
commit | cd63678545592ed035b0ee8d1559da2751f0c608 (patch) | |
tree | 9a96750b6ebed6aa3500f4af20b839c86227ca8a /playbooks/init_vms.yml | |
parent | 4378ef168bb3700b7ccafecdfb6914f4fd58f28c (diff) | |
download | infrastructure-cd63678545592ed035b0ee8d1559da2751f0c608.tar.gz |
In-progress multiple vms init
Diffstat (limited to 'playbooks/init_vms.yml')
-rw-r--r-- | playbooks/init_vms.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/playbooks/init_vms.yml b/playbooks/init_vms.yml new file mode 100644 index 0000000..3da35dc --- /dev/null +++ b/playbooks/init_vms.yml @@ -0,0 +1,11 @@ + +# init_vm.yml +# Initialize mutliple vms, with os-agnostic tasks + +--- + +- include: init_vm.yml + vars: + host: "{{ host }}" + guest: "{{ item }}" + loop: "{{ vms | select('search', 'iso') | list }}" |