1
0
Fork 0
mirror of https://github.com/NaN-tic/ansible.git synced 2023-12-14 02:32:58 +01:00

Move verify up so approle and other methods work as intended.

This commit is contained in:
Chad Anderson 2018-04-10 08:35:54 -07:00 committed by Toshio Kuratomi
parent d29f647f09
commit 6ff7797eaa

View file

@ -131,6 +131,7 @@ class HashiVault:
# to enable a new auth backend, simply add a new 'def auth_<type>' method below.
#
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':
try:
self.client = hvac.Client(url=self.url, verify=self.verify)