bitcot / aws-secrets-manager
AWS Secrets Manager implementation with saving the encrypted values in cache
Requires
- ext-json: *
- aws/aws-sdk-php: ^3.184
- illuminate/cache: ^8.47
- illuminate/encryption: ^8.47
- illuminate/filesystem: ^8.47
- illuminate/support: ^8.47
- symfony/filesystem: ^5.3
- vlucas/phpdotenv: ^5.3
This package is not auto-updated.
Last update: 2025-03-21 18:55:43 UTC
README
A library to get secret key value pairs from AWS Secrets Manager
This library encrypts the retrieved values and stores it in the cache indefinitely. Getting the latest key value pairs from AWS and updating them in the cache can be achieved with any one of the following methods:
- Clear the cache by calling
secrets::clearSecrets();
- Setup Automatic update from AWS at runtime by adding
secrets::isLatest('key');
andsecrets::markAsWorking('key');
in a try-catch block where the secret is used - [Laravel specific] Use the Artisan command
php artisan cache:clear
Prerequisites
- Setup a secret in AWS
- Create an AWS access key ID and secret access key
- Setting up Credentials for the AWS SDK
Installation
Installation is super-easy via Composer:
$ composer require bitcot/aws-secrets-manager
or add it by hand to your composer.json
file.
Setup
-
Setup environment variables in
.env
file in the root of your project. Additional informationAPP_KEY=<base64_string_preferably_32_characters_long> BSM_AWS_PROFILE=<AWS_credentials_profile> BSM_SECRET_NAME=<AWS_secret_name> BSM_AWS_REGION=<AWS_secret_region> BSM_CACHE_KEY=<secrets_manager_cache_key> BSM_MAX_RETRY_COUNT=<failed_secrets_max_retries>
- APP_KEY [required] base64 string preferably 32 characters long used for encryption Additional information
- If this is 'not set'/'empty string' all the methods in this library will return failed response values (
null
in case ofsecrets::get($key)
)
- If this is 'not set'/'empty string' all the methods in this library will return failed response values (
- BSM_AWS_PROFILE [Default: default] Profile for AWS access key ID and secret access key stored in ~/.aws/credentials
- BSM_SECRET_NAME [Default: project/env] Name of the secret stored in AWS
- BSM_AWS_REGION [Default: us-east-2] AWS Region in which the secret is stored
- BSM_CACHE_KEY [Default: bsmAwsSecrets] Key of the secrets stored in the cache
- BSM_MAX_RETRY_COUNT [Default: 10] No of failed attempts before marking the key as inactive. This is applicable only if automatic update of values is being used
- APP_KEY [required] base64 string preferably 32 characters long used for encryption Additional information
-
Include this namespace to retrieve secrets
use Bitcot\AwsSecretsManager\secrets;
Usage
Retrieving value using a key
secrets::get('key');
Returns
- Value of the given key
null
If the secret is an empty stringnull
If no secret exists for the given key in AWS
Retrieving all the key value pairs
secrets::getAll();
Returns
- Key value pairs object
- If no key value pairs exists in AWS, an Empty object would be returned
Get All the info of secrets
secrets::getInfo();
To get the values of only one key value pair, Pass the key while calling this method
secrets::getInfo('key');
Returns
An object containing the value, retry count and status of every key stored in the cache
null
If the key is passed while calling the method and no secret exists with that key.
Clear all the secrets from cache
secrets::clearSecrets();
Returns
true
If the secrets in cache are successfully cleared, false
Otherwise.
Check if the key value pair in the cache matches with the one in AWS
This can be used to set up automatic update of the values in cache if a new value is avaliable in aws
secrets::isLatest('key');
This method clears all the secrets stored in the cache by default if latest value in AWS does not match with the one in cache.
To stop this, pass false
as the second argument.
secrets::isLatest('key', false);
Returns
true
If the value in AWS matches with the one in cache, false
Otherwise.
- Returns
true
if the given key doesn't exist in AWS
Mark a secret key value pair as working
This should be clubbed with isLatest()
to achieve automatic update of the values in cache if a new value is available in aws
secrets::markAsWorking('key');
Returns
true
If the key value pair has been marked as working and set retry count to 0, false
Otherwise.
Get status of the secrets
secrets::status();
Returns
An object containing arrays of Total, active, failing, failed and unknown keys.
Implementation types
Manual update of the values in cache if a new value is available in aws
Get secrets
Include this namespace at the top of the file
use Bitcot\AwsSecretsManager\secrets;
To retrieve the values
echo secrets::get('key');
Update values from AWS
- Clear the cache by calling
secrets::clearSecrets();
- [Laravel specific] Use the Artisan command
php artisan cache:clear
Automatic update of the values in cache if a new value is available in AWS[Approximation]
Include this namespace at the top of the file
use Bitcot\AwsSecretsManager\secrets;
To retrieve the latest values
function apiCallSimulation($secondTry = false){ echo secrets::get('key'); //call the API if ('API call failed dude to wrong/invalid secret'){ if (!secrets::isLatest('key') && !$secondTry){ return apiCallSimulation(true); } } if ('API call is successful'){ secrets::markAsWorking('key'); } }
Clear secrets - Laravel example
create a custom artisan command, Include the namespace at the top and use this code in handle method
public function handle(secrets $secrets) { $success = $secrets->clearSecrets(); if ($success){ $this->info('The command was successful!'); }else { $this->error('Something went wrong!'); } return 0; }