Merge pull request #2795 from ardichoke/fix_vault_api_v2_append
Fix Certificate Appending With v2 Vault API
This commit is contained in:
commit
6e4306b3bb
|
@ -311,6 +311,7 @@ def get_secret(client, mount, path):
|
||||||
result = client.secrets.kv.v2.read_secret_version(
|
result = client.secrets.kv.v2.read_secret_version(
|
||||||
path=path, mount_point=mount
|
path=path, mount_point=mount
|
||||||
)
|
)
|
||||||
|
result = result['data']
|
||||||
except ConnectionError:
|
except ConnectionError:
|
||||||
pass
|
pass
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in New Issue