mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-09 17:07:44 +01:00
21 lines
311 B
YAML
21 lines
311 B
YAML
|
---
|
||
|
- hosts: webservers
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Build webservers
|
||
|
include_role:
|
||
|
name: webserver
|
||
|
tags:
|
||
|
- always
|
||
|
|
||
|
- hosts: load_balancers
|
||
|
become: true
|
||
|
tasks:
|
||
|
- name: Build load balancers
|
||
|
include_role:
|
||
|
name: load_balancer
|
||
|
tags:
|
||
|
- always
|
||
|
|
||
|
|