mirror of
https://github.com/Apress/Beginning-Ansible-Concepts-and-Application.git
synced 2024-11-14 02:58:16 +01:00
8 lines
122 B
YAML
8 lines
122 B
YAML
---
|
|
- hosts: webservers
|
|
become: true
|
|
tasks:
|
|
- name: Build webservers
|
|
include_role:
|
|
name: webserver
|
|
|