Skip to content

Commit

Permalink
pass vault_verify to hvac client
Browse files Browse the repository at this point in the history
  • Loading branch information
dontseyit committed Nov 26, 2024
1 parent eaf352d commit 533310f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/fixtures/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ class VaultFixture:
def __init__(self, config: VaultConfig):
self.config = config
self.vaults_used: set[str] = set()
self.client = hvac.Client(url=self.config.vault_url)
self.client = hvac.Client(
url=self.config.vault_url, verify=self.config.vault_verify
)
self._auth_mount_point = config.vault_auth_mount_point
self._secrets_mount_point = config.vault_secrets_mount_point
self._kube_role = config.vault_kube_role
Expand Down

0 comments on commit 533310f

Please sign in to comment.