Skip to main content

AWS Parameter Store

Enables management of individual connection settings with encryption support for securely storing keys and secrets in the AWS Systems Manager Parameter Store.

Configure AWS SDK

Ensure that the AWS SDK has the necessary configured AWS credentials.

Configure API Connections

Use the AWS console's UI (or other preferred mechanism) to manage API connection details, providing key names as defined in API Connection Management. When creating entries for API client keys or secrets, use the SecureString type for the value.

AWS

Configure API Publisher

To use the AWS Parameter Store for you connection management, change the provider setting in the configurationStoreSettings.json file to awsParameterStore and supply the appropriate AWS SDK initialization parameters, as shown below (see the AWS SDK for .NET Core documentation for more information):

{
"configurationStore": {
"provider": "awsParameterStore",
"awsParameterStore": {
"Profile": "default",
"Region": "us-east-1"
}
}
}