File size: 1,164 Bytes
e18c302 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | from typing import Any, Dict
from hvac import Client
from aws_lambda_powertools.utilities.parameters import BaseProvider
class VaultProvider(BaseProvider):
def __init__(self, vault_url: str, vault_token: str) -> None:
super().__init__()
self.vault_client = Client(url=vault_url, verify=False, timeout=10)
self.vault_client.token = vault_token
def _get(self, name: str, **sdk_options) -> Dict[str, Any]:
# for example proposal, the mountpoint is always /secret
kv_configuration = self.vault_client.secrets.kv.v2.read_secret(path=name)
return kv_configuration["data"]["data"]
def _get_multiple(self, path: str, **sdk_options) -> Dict[str, str]:
list_secrets = {}
all_secrets = self.vault_client.secrets.kv.v2.list_secrets(path=path)
# for example proposal, the mountpoint is always /secret
for secret in all_secrets["data"]["keys"]:
kv_configuration = self.vault_client.secrets.kv.v2.read_secret(path=secret)
for key, value in kv_configuration["data"]["data"].items():
list_secrets[key] = value
return list_secrets
|