20 lines
291 B
YAML
20 lines
291 B
YAML
---
|
|
|
|
- name: Retrieve network info
|
|
hosts: loadbalancers
|
|
gather_facts: true
|
|
gather_subset:
|
|
- network
|
|
tasks: []
|
|
|
|
- name: Deploy web servers
|
|
hosts: webservers
|
|
diff: true
|
|
roles:
|
|
- role: nginx
|
|
tags:
|
|
- generic
|
|
- role: webapps
|
|
tags:
|
|
- specific
|