-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecret_manager.py
34 lines (24 loc) · 989 Bytes
/
secret_manager.py
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
34
import boto3
class SecretsManager:
"""
Access AWS Secrets Manager values
"""
def __init__(self, *, region_name):
session = boto3.session.Session()
self.client = session.client(
service_name='secretsmanager',
region_name=region_name,
)
def get_secret(self, secret_name, force_bytes=False, force_str=False, encoding='UTF-8'):
response = self.client.get_secret_value(SecretId=secret_name)
if 'SecretString' in response:
secret_data = response['SecretString']
if force_bytes and isinstance(secret_data, str):
secret_data = bytes(secret_data, encoding=encoding)
elif 'SecretBinary' in response:
secret_data = response['SecretBinary']
if force_str and isinstance(secret_data, bytes):
secret_data = str(secret_data, encoding=encoding)
else:
raise NotImplementedError
return secret_data