90DaysOfDevOps/zh_tw/Days/Configmgmt/ansible-scenario7/playbook7.yml

22 lines
252 B
YAML
Raw Normal View History

2022-04-21 21:17:43 +07:00
- hosts: webservers
become: yes
roles:
- common
- apache2
tags:
web
- hosts: proxy
become: yes
roles:
- common
- nginx
tags:
proxy
- hosts: database
become: yes
roles:
- common
- mysql
tags: database