summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt')
-rw-r--r--docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt b/docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt
new file mode 100644
index 0000000..25aa178
--- /dev/null
+++ b/docs/docsite/rst/tips_tricks/shared_snippets/role_directory.txt
@@ -0,0 +1,26 @@
+.. code-block:: yaml
+
+ roles/
+ common/ # this hierarchy represents a "role"
+ tasks/ #
+ main.yml # <-- tasks file can include smaller files if warranted
+ handlers/ #
+ main.yml # <-- handlers file
+ templates/ # <-- files for use with the template resource
+ ntp.conf.j2 # <------- templates end in .j2
+ files/ #
+ bar.txt # <-- files for use with the copy resource
+ foo.sh # <-- script files for use with the script resource
+ vars/ #
+ main.yml # <-- variables associated with this role
+ defaults/ #
+ main.yml # <-- default lower priority variables for this role
+ meta/ #
+ main.yml # <-- role dependencies and optional Galaxy info
+ library/ # roles can also include custom modules
+ module_utils/ # roles can also include custom module_utils
+ lookup_plugins/ # or other types of plugins, like lookup in this case
+
+ webtier/ # same kind of structure as "common" was above, done for the webtier role
+ monitoring/ # ""
+ fooapp/ # ""