docs(role): Add example Ansible task output

This commit is contained in:
hygienic-books 2022-07-23 23:14:00 +02:00
parent a87b75f2f0
commit 8691e6a6a6

@ -92,3 +92,22 @@ The next step can be this `role_include_vault-check` to hard-fail in case a key
```
## Output
Ansible's task output will be for example:
```
TASK [...] ****************************************************************************************
ok: ...
TASK [role_include_vault-check : If a secret is missing: Fail progress] ***************************
ok: [mail-1.core.cliff.airlo.cc] => (item=password) => {
"msg": "Vault has secret 'password' at 'name/domain/qualified/fully/os/root'"
}
ok: [mail-1.core.cliff.airlo.cc] => (item=password_salt) => {
"msg": "Vault has secret 'password_salt' at 'name/domain/qualified/fully/os/root'"
}
TASK [...] ****************************************************************************************
ok: ...
```