Closed
Description
Line 71 in 3e70e67
if cert is not None and VAULT_CLIENT_CERT:
cert = "\n".join(
[
VAULT_CLIENT_CERT,
VAULT_CLIENT_KEY,
]
)
I expect the param cert
code to take priority over the environment variable VAULT_CLIENT_CERT
.
This is correctly followed for the verify
param. verify
param will take priority over VAULT_CAPATH
At least this logic should be consistent for both.