summaryrefslogtreecommitdiff
path: root/docs/docsite/variables.dot
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/variables.dot')
-rw-r--r--docs/docsite/variables.dot38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/docsite/variables.dot b/docs/docsite/variables.dot
deleted file mode 100644
index f5860dcb..00000000
--- a/docs/docsite/variables.dot
+++ /dev/null
@@ -1,38 +0,0 @@
-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"
-
-
-
-}