hashi_vault: Use mount_point kwarg for ldap/userpass login (#54358)

Fixes: #54249
This commit is contained in:
Tom Cooper 2019-03-27 00:11:09 -04:00 committed by Abhijeet Kasurde
parent affde96fa8
commit 2b6413558b

View file

@ -219,14 +219,14 @@ class HashiVault:
if mount_point is None:
mount_point = 'userpass'
self.client.auth_userpass(username, password, mount_point)
self.client.auth_userpass(username, password, mount_point=mount_point)
def auth_ldap(self, **kwargs):
username, password, mount_point = self.check_params(**kwargs)
if mount_point is None:
mount_point = 'ldap'
self.client.auth_ldap(username, password, mount_point)
self.client.auth_ldap(username, password, mount_point=mount_point)
def boolean_or_cacert(self, validate_certs, cacert):
validate_certs = boolean(validate_certs, strict=False)