16 lines
226 B
YAML
16 lines
226 B
YAML
---
|
|
|
|
- name: apply common configuration to all nodes
|
|
hosts: all
|
|
user: root
|
|
|
|
roles:
|
|
- common
|
|
|
|
- name: apply configuration to web servers (nginx)
|
|
hosts: webservers-nginx
|
|
user: root
|
|
|
|
roles:
|
|
- webservers-nginx
|