1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

added global vars to best practice

This commit is contained in:
Derek Carter 2012-06-21 16:50:57 -04:00
parent 21381fc533
commit 3aefdb0e87

View file

@ -19,6 +19,7 @@ Playbooks should be organized like this::
(root of source control repository) (root of source control repository)
global_vars.yml # variables for all playbooks
acme/ # each playbook has a directory acme/ # each playbook has a directory
setup.yml # playbook to manage the service setup.yml # playbook to manage the service
@ -32,7 +33,7 @@ Playbooks should be organized like this::
etc_other_conf_other.conf etc_other_conf_other.conf
vars/ vars/
main.yml main.yml # variables specific to this playbook
handlers/ handlers/
main.yml main.yml
@ -52,6 +53,7 @@ The acme/setup.yml playbook would be as simple as::
user: root user: root
vars_files vars_files
- ../global_vars.yml
- vars/main.yml - vars/main.yml
tasks: tasks:
- include: tasks/setup.yml - include: tasks/setup.yml