Skip to content
Advertisement

The secret value can’t be converted to key name and value pairs

I already have a secret created by cloudformation template with the following key/value format:

JavaScript

And i’ve created a rotation lambda, but when i rotate the secret i get only plain text format without key/value pair as the following error: The secret value can’t be converted to key name and value pairs.

here’s my lambda code:

JavaScript

Advertisement

Answer

You will need to update the default rotation template so that it generates the new secret in the same format which you have specified in your cloudformation template. By default, the rotation lambda just creates a new secret string and populates only that value. If you add the following lines to the rotation lambda function, your newly rotated secret will be in a JSON format that allows the Web UI to parse it into name/value pairs.

You will need to add import json at the top of your script, and then modify the create_secret function as shown below:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement