From bbf6484e891f4ee661c15f629ff0bc7267b0a736 Mon Sep 17 00:00:00 2001 From: liortamary Date: Tue, 1 Mar 2022 21:21:28 +0200 Subject: [PATCH] fix code review comments: Add support for Kubernetes authentication method in Hashicorp Vault secret lookup --- awx/main/credential_plugins/hashivault.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/awx/main/credential_plugins/hashivault.py b/awx/main/credential_plugins/hashivault.py index 4ccc244330..6a22efc21e 100644 --- a/awx/main/credential_plugins/hashivault.py +++ b/awx/main/credential_plugins/hashivault.py @@ -52,7 +52,11 @@ base_inputs = { 'label': _('Kubernetes role'), 'type': 'string', 'multiline': False, - 'help_text': _('The Role for Kubernetes Authentication'), + 'help_text': _( + 'The Role for Kubernetes Authentication.' + ' This is the named role, configured in Vault server, for AWX pod auth policies.' + ' see https://www.vaultproject.io/docs/auth/kubernetes#configuration' + ), }, { 'id': 'default_auth_path',