aws-secrets-manager-wrapper
v0.0.4
Published
A TypeScript wrapper for AWS Secrets Manager that simplifies common operations and provides a more user-friendly interface.
Downloads
264
Keywords
Readme
AWS Secrets Manager Wrapper
A TypeScript wrapper for AWS Secrets Manager that simplifies common operations and provides a more user-friendly interface.
Features
- Easy-to-use methods for common Secrets Manager operations
- Automatic parsing of JSON secrets
- Customizable AWS configuration
- Proper error handling and custom error types
- TypeScript support for better type safety
Installation
npm install aws-secrets-manager-wrapper
Usage
Initialization
import { AWSSecretsManager } from "aws-secrets-manager-wrapper";
const secretsManager = new AWSSecretsManager({
region: "us-east-1",
// Optional: Provide credentials if not using environment variables or IAM roles
// accessKeyId: 'YOUR_ACCESS_KEY_ID',
// secretAccessKey: 'YOUR_SECRET_ACCESS_KEY',
});
Get a Secret
const secretName = "my-secret";
const secret = await secretsManager.getSecret(secretName);
console.log(secret);
Batch Get Secrets
const secretNames = ["secret1", "secret2", "secret3"];
const result = await secretsManager.batchGetSecrets({ secretIds: secretNames });
console.log(result.secrets);
console.log(result.errors);
Create a Secret
const secretName = "new-secret";
const secretValue = { key: "value" };
const arn = await secretsManager.createSecret(secretName, secretValue);
console.log(`Secret created with ARN: ${arn}`);
Update a Secret
const secretName = "existing-secret";
const newSecretValue = { updatedKey: "updatedValue" };
const arn = await secretsManager.updateSecret(secretName, newSecretValue);
console.log(`Secret updated with ARN: ${arn}`);
Delete a Secret
const secretName = "secret-to-delete";
await secretsManager.deleteSecret(secretName);
console.log(`Secret "${secretName}" deleted`);
API
AWSSecretsManager
Constructor
constructor(config: AWSSecretsManagerConfig = {})
config
: Optional configuration objectregion
: AWS region (default: 'us-east-1')accessKeyId
: AWS access key IDsecretAccessKey
: AWS secret access keycredentials
: AWS credentials object (alternative to accessKeyId and secretAccessKey)
Methods
getSecret<T = any>(secretName: string, options?: GetSecretOptions): Promise<T>
batchGetSecrets(options: BatchGetSecretOptions): Promise<BatchGetSecretResult>
createSecret<T = any>(secretName: string, secretValue: T, options?: SecretOptions): Promise<string>
updateSecret<T = any>(secretName: string, secretValue: T, options?: SecretOptions): Promise<string>
deleteSecret(secretName: string, options?: DeleteSecretOptions): Promise<void>
Error Handling
The wrapper uses a custom SecretsManagerError
class for error handling. All methods throw this error type, which includes the original AWS SDK error for reference.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License.