12 lines
253 B
YAML
12 lines
253 B
YAML
# examples/group_vars/webservers.yml
|
|
# This file contains variables that apply to all hosts in the 'webservers' group.
|
|
|
|
---
|
|
# User to connect as
|
|
ansible_user: webadmin
|
|
|
|
# Port for HTTP service
|
|
http_port: 80
|
|
|
|
# Maximum number of clients
|
|
max_clients: 200
|