mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
consolidated docs
point to new doc locations removed non existing dirs
This commit is contained in:
parent
b139a67c71
commit
57f8b791d6
143 changed files with 4 additions and 9 deletions
38
docs/docsite/variables.dot
Normal file
38
docs/docsite/variables.dot
Normal file
|
@ -0,0 +1,38 @@
|
|||
digraph G {
|
||||
|
||||
subgraph cluster_0 {
|
||||
"command line variables" -> "--extra-args"
|
||||
}
|
||||
|
||||
subgraph cluster_1 {
|
||||
"role variables" -> "roles/rolename/vars.yml" -> "parameters passed to role" -> "parameters from dependent roles"
|
||||
}
|
||||
|
||||
subgraph cluster_2 {
|
||||
"top-level playbook variables" -> "vars: directives" -> "vars_files: directives";
|
||||
}
|
||||
|
||||
subgraph cluster_3 {
|
||||
"inventory variables" -> "group_vars/all" -> "group_vars/grandparent1" -> "group_vars/parent1" -> "host_vars/myhostname";
|
||||
"group_vars/all" -> "group_vars/grandparent2";
|
||||
"group_vars/grandparent1" -> "group_vars/parent2"
|
||||
"group_vars/grandparent2" -> "host_vars/myhostname";
|
||||
"group_vars/parent2" -> "host_vars/myhostname"
|
||||
}
|
||||
|
||||
subgraph cluster_4 {
|
||||
"facts" -> "gathered host facts"
|
||||
"facts" -> "host facts from /etc/ansible/facts.d"
|
||||
"facts" -> "set_fact"
|
||||
"facts" -> "include_vars"
|
||||
}
|
||||
|
||||
subgraph cluster_5 {
|
||||
"role defaults" -> "roles/rolename/defaults.yml"
|
||||
}
|
||||
|
||||
"command line variables" -> "role variables" -> "top-level playbook variables" -> "inventory variables" -> "role defaults" -> "facts"
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue