mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Move verify up so approle and other methods work as intended.
This commit is contained in:
parent
d29f647f09
commit
6ff7797eaa
1 changed files with 1 additions and 0 deletions
|
@ -131,6 +131,7 @@ class HashiVault:
|
||||||
# to enable a new auth backend, simply add a new 'def auth_<type>' method below.
|
# to enable a new auth backend, simply add a new 'def auth_<type>' method below.
|
||||||
#
|
#
|
||||||
self.auth_method = kwargs.get('auth_method')
|
self.auth_method = kwargs.get('auth_method')
|
||||||
|
self.verify = self.boolean_or_cacert(kwargs.get('validate_certs', True), kwargs.get('cacert', ''))
|
||||||
if self.auth_method and self.auth_method != 'token':
|
if self.auth_method and self.auth_method != 'token':
|
||||||
try:
|
try:
|
||||||
self.client = hvac.Client(url=self.url, verify=self.verify)
|
self.client = hvac.Client(url=self.url, verify=self.verify)
|
||||||
|
|
Loading…
Reference in a new issue