Added roles

This commit is contained in:
vagrant
2025-11-18 13:18:52 +00:00
parent cbe9bfefa4
commit b40939e399
39 changed files with 568 additions and 0 deletions

16
examples/roles/site.yml Normal file
View File

@@ -0,0 +1,16 @@
---
- hosts: database
become: true
roles:
- mysql
- hosts: loadbalancer
become: true
roles:
- nginx
- hosts: webserver
become: true
roles:
- apache2
- demo_app