Added a README.md to the sample role

This commit is contained in:
Nicola Belluti 2023-09-07 00:11:39 +02:00
parent b29e540285
commit 4c8f3c88a1
5 changed files with 16 additions and 1 deletions

View File

@ -3,3 +3,5 @@
roles:
- name: Test Role
role: test_role
vars:
lorem_ipsum_string: Lorem Ipsum is simply dummy text

10
roles/test_role/README.md Normal file
View File

@ -0,0 +1,10 @@
# Test Role
A brief description about the role...
## Variables
| Name | Is Required? | Default |
|:--------------------:|:------------:|:-------------:|
| `hello_world_string` | ✔️ | Hello, World! |
| `lorem_ipsum_string` | ❌ | |

View File

@ -0,0 +1 @@
hello_world_string: Hello, World!

View File

@ -3,7 +3,7 @@
- name: Print an "Hello, World!"
ansible.builtin.debug:
msg: Hello, World!
msg: "{{ hello_world_string }}"
- name: Test the `ansible_managed` variable
ansible.builtin.template:

View File

@ -1 +1,3 @@
# {{ ansible_managed }}
{{ lorem_ipsum_string }}