From d23fcf6496c707f138cd1db0caa473508cb04f15 Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Sun, 24 Jul 2022 03:18:38 +0200 Subject: [PATCH] fix(role): Clarify HashiCorp Vault kv secrets hierarchy example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4707acc..cce0b2d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An Ansible role to change an operating system's local user password This role requires variables defined in [defaults/main.yml](defaults/main.yml). Feel free to overwrite them as needed for your HashiCorp Vault setup for example in a `group_vars` or `host_vars` file. -* `fqdn_reverse`: A variable that contains the reversed fully qualified domain name for each host. For `fully.qualified.domain.name` this variable will equal `name.domain.qualified.fully`. Consider this a suggestion for how to set up your HashiCorp Vault `kv` secrets hierarchy. +* `fqdn_reverse`: A variable that contains the reversed fully qualified domain name for each host with each dot (`.`) replaced by a slash (`/`). For `fully.qualified.domain.name` this variable will equal `name/domain/qualified/fully`. Consider this a suggestion for how to set up your HashiCorp Vault `kv` secrets hierarchy. * `local_os_password_vault_vars`: The variables you want extracted from your Vault instance, by default `['password', 'password_salt']` which contain the new password to set for the local account and a salt, respectively.