diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2016-12-22 13:03:16 -0500 |
---|---|---|
committer | Brian Coca <bcoca@users.noreply.github.com> | 2017-01-06 09:16:59 -0500 |
commit | 57f8b791d672ec520036973db235071656f45077 (patch) | |
tree | d907e3c11067065e804296722fd8f135c666304f /docs/docsite/variables.dot | |
parent | b139a67c71743f0fa824fc4c7d0e36ea5feeadee (diff) | |
download | ansible-57f8b791d672ec520036973db235071656f45077.tar.gz |
consolidated docs
point to new doc locations
removed non existing dirs
Diffstat (limited to 'docs/docsite/variables.dot')
-rw-r--r-- | docs/docsite/variables.dot | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/docsite/variables.dot b/docs/docsite/variables.dot new file mode 100644 index 0000000000..f5860dcbf8 --- /dev/null +++ b/docs/docsite/variables.dot @@ -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" + + + +} |