aws-secret-manager-connect-demo
Reactive icon

AWS Secret Manager Connect Demo

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 23 February 2023
 by 
0.0
 (0 ratings)
aws-secret-manager-connect-demo

AWS Secret Manager Connect Demo

Documentation
1.0.0

AWS Secrets Manager is a service that enables you to store and manage secrets such as database credentials, API keys, and other sensitive data. You can use Secrets Manager to store encrypted versions of these secrets, and then retrieve them programmatically as needed.

To integrate AWS Secrets Manager with OutSystems, you can create a custom component that uses the AWS SDK for .NET. In this component, you can implement methods to create, read, update, and delete secret values.

Here is an overview of the methods you can implement in your component:

  1. CreateSecretValue: This method creates a new secret value in AWS Secrets Manager. It takes as input the secret name, the secret value, and an optional description.

  1. DeleteSecretValue: This method deletes a secret value from AWS Secrets Manager. It takes as input the secret name.


  1. GetSecretValue: This method retrieves a secret value from AWS Secrets Manager. It takes as input the secret name, and returns the secret value.


  1. UpdateSecretValue: This method updates an existing secret value in AWS Secrets Manager. It takes as input the secret name, the new secret value, and an optional description.