1
0
IaC/ansible/playbooks/03_vm_deploy.yaml
2022-10-24 15:50:38 +13:00

22 lines
313 B
YAML

---
- name: create the vms
hosts: hv00
gather_facts: true
become: true
roles:
- vm_deploy
- name: python bootstrap
hosts: k8s
gather_facts: false
become: true
roles:
- python-install
- name: vm hardening
hosts: k8s
gather_facts: true
become: true
roles:
- sshd
- firewall