22 lines
348 B
YAML
22 lines
348 B
YAML
---
|
|
#### YAML inventory file
|
|
|
|
# the two first lines above are needed for the script
|
|
# to identify the file as an inventory file
|
|
|
|
## Structure
|
|
# hosts:
|
|
# - host: <HOSTNAME>
|
|
# # if needed
|
|
# hostvars:
|
|
# key: value
|
|
# # if needed
|
|
# groups:
|
|
# - group1
|
|
# - group2
|
|
|
|
hosts:
|
|
- host: 192.168.3.2
|
|
groups:
|
|
- nginx
|