mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-29 23:03:08 +00:00
[lookup_plugin/hashi_vault] add missing 'mount_point' param for approle (#897)
* [lookup_plugin/hashi_vault] add missing 'mount_point' param for approle * [lookup_plugin/hashi_vault] add changelog fragment * Update changelogs/fragments/897-lookup-plugin-hashivault-add-approle-mount-point.yaml Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Benoit Bayszczak <benoit.bayszczak@adevinta.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
---
|
||||
bugfixes:
|
||||
- hashi_vault - add missing ``mount_point`` parameter for approle auth (https://github.com/ansible-collections/community.general/pull/897).
|
||||
@@ -406,7 +406,7 @@ class HashiVault:
|
||||
self.client.auth_ldap(**params)
|
||||
|
||||
def auth_approle(self):
|
||||
params = self.get_options('role_id', 'secret_id')
|
||||
params = self.get_options('role_id', 'secret_id', 'mount_point')
|
||||
self.client.auth_approle(**params)
|
||||
|
||||
def auth_aws_iam_login(self):
|
||||
|
||||
Reference in New Issue
Block a user