Problem Statement: Use boto3 library in Python to create a secret key as plain text in AWS Secret Manager
Approach/Algorithm to solve this problem
Step 1: Import boto3 and botocore exceptions to handle exceptions.
Step 2: secret_stored_location and secret_key_pair is the required parameter. It is a place where secrets are saved with given key-pair value. Make sure secret_key_pair is written as string, not as dict. For example: '{key:pair}'
Step 3: Create an AWS session using boto3 lib. Make sure region_name is mentioned in the default profile. If it is not mentioned, then explicitly pass the region_name while creating the session.
Step 4: Create an AWS client for secretmanager.
Step 5: Call create_secret and pass the secret_stored_location as Name and secret_key_pair as SecretString parameter
Step 6: It returns the metadata of added secret.
Step 7: Handle the generic exception if something went wrong while creating secret.
Example Code
Use the following code to create secrets in AWS Secret Manager −
import boto3 from botocore.exceptions import ClientError def create_secret_details(secret_stored_location, secret_key_pair:str): session = boto3.session.Session() s3_client = session.client('secretmanager') try: response = s3_client.create_secret(Name=secret_stored_location,SecretString = secret_key_pair) return response except ClientError as e: raise Exception("boto3 client error in create_secret_details: " + e.__str__()) except Exception as e: raise Exception("Unexpected error in create_secret_details: " + e.__str__()) details = '{"user_test":"test"}' a = get_decrypted_secret_details('/secrets/aws', details) print(a)
Output
{'ARN': 'arn:aws:secretsmanager:us-east-1:***************:secret:/secrets/aws-wr1Aj6', 'Name': '/secrets/aws', 'VersionId': 'fcdc1b5b-2a35-4d12-9d84-65d529651d2e', 'ResponseMetadata': {'RequestId': 'b32fe48d**************ab', 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Sat, 03 Apr 2021 09:40:48 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '197', 'connection': 'keep-alive', 'x-amzn-requestid': *********************************}, 'RetryAttempts': 0}}