From 4de477686e1ecef94825f44e873cb2f6759ea340 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 22 Jun 2021 15:05:24 -0400 Subject: [PATCH] Update help text for hashivault credential plugin --- awx/main/credential_plugins/hashivault.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/awx/main/credential_plugins/hashivault.py b/awx/main/credential_plugins/hashivault.py index adc5be4342..c179fcd1e7 100644 --- a/awx/main/credential_plugins/hashivault.py +++ b/awx/main/credential_plugins/hashivault.py @@ -63,7 +63,15 @@ base_inputs = { 'id': 'secret_path', 'label': _('Path to Secret'), 'type': 'string', - 'help_text': _('The path to the secret stored in the secret backend e.g, /some/secret/'), + 'help_text': _( + ( + 'The path to the secret stored in the secret backend e.g, /some/secret/. It is recommended' + ' that you use the secret backend field to identify the storage backend and to use this field' + ' for locating a specific secret within that store. However, if you prefer to fully identify' + ' both the secret backend and one of its secrets using only this field, join their locations' + ' into a single path without any additional separators, e.g, /location/of/backend/some/secret.' + ) + ), }, { 'id': 'auth_path',