mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #129 from goozbach/master
Add a global_vars file for use of all playbooks.
This commit is contained in:
@@ -19,6 +19,7 @@ Playbooks should be organized like this::
|
||||
|
||||
(root of source control repository)
|
||||
|
||||
global_vars.yml # variables for all playbooks
|
||||
acme/ # each playbook has a directory
|
||||
|
||||
setup.yml # playbook to manage the service
|
||||
@@ -32,7 +33,7 @@ Playbooks should be organized like this::
|
||||
etc_other_conf_other.conf
|
||||
|
||||
vars/
|
||||
main.yml
|
||||
main.yml # variables specific to this playbook
|
||||
|
||||
handlers/
|
||||
main.yml
|
||||
@@ -52,6 +53,7 @@ The acme/setup.yml playbook would be as simple as::
|
||||
user: root
|
||||
|
||||
vars_files
|
||||
- ../global_vars.yml
|
||||
- vars/main.yml
|
||||
tasks:
|
||||
- include: tasks/setup.yml
|
||||
|
||||
Reference in New Issue
Block a user