Added a README.md to the sample role
This commit is contained in:
parent
b29e540285
commit
4c8f3c88a1
@ -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
10
roles/test_role/README.md
Normal 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` | ❌ | |
|
1
roles/test_role/defaults/main.yml
Normal file
1
roles/test_role/defaults/main.yml
Normal file
@ -0,0 +1 @@
|
||||
hello_world_string: Hello, World!
|
@ -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:
|
||||
|
@ -1 +1,3 @@
|
||||
# {{ ansible_managed }}
|
||||
|
||||
{{ lorem_ipsum_string }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user