mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 16:36:29 +00:00
hashi_vault: Use mount_point kwarg for ldap/userpass login (#54358)
Fixes: #54249
This commit is contained in:
committed by
Abhijeet Kasurde
parent
affde96fa8
commit
2b6413558b
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user