hashi_vault: Use mount_point kwarg for ldap/userpass login (#54358)
Fixes: #54249
This commit is contained in:
parent
affde96fa8
commit
2b6413558b
1 changed files with 2 additions and 2 deletions
|
@ -219,14 +219,14 @@ class HashiVault:
|
||||||
if mount_point is None:
|
if mount_point is None:
|
||||||
mount_point = 'userpass'
|
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):
|
def auth_ldap(self, **kwargs):
|
||||||
username, password, mount_point = self.check_params(**kwargs)
|
username, password, mount_point = self.check_params(**kwargs)
|
||||||
if mount_point is None:
|
if mount_point is None:
|
||||||
mount_point = 'ldap'
|
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):
|
def boolean_or_cacert(self, validate_certs, cacert):
|
||||||
validate_certs = boolean(validate_certs, strict=False)
|
validate_certs = boolean(validate_certs, strict=False)
|
||||||
|
|
Loading…
Reference in a new issue