This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ansible/site.yml
deepend a28f6cb047
All checks were successful
continuous-integration/drone/push Build is passing
Update 'site.yml'
2023-07-10 17:25:47 +00:00

26 lines
369 B
YAML

---
## This is the overall site playbook.
- name: Baseline Configuration
hosts: all
become: yes
become_method: sudo
roles:
- common
- name: Shell server cofiguration
hosts: shell
become: yes
become_method: sudo
roles:
- shell
- name: Web server configuration
hosts: webserver
become: yes
become_method: sudo
roles:
- webserver