From 8691e6a6a63db3b4332b6b26f911d244561f4747 Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Sat, 23 Jul 2022 23:14:00 +0200 Subject: [PATCH] docs(role): Add example Ansible task output --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index c68ce43..98be057 100644 --- a/README.md +++ b/README.md @@ -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: ... + +```