I am fetching a secret from AWS Secrets Manager, but currently getting a list of all the key-value pairs. I just want secret value for a specific key in return.
Get-SECSecretValue -SecretId "secret-arn" -Select SecretString
I was not able to find any solution on internet sadly.
CodePudding user response:
You can use the ConvertFrom-Json to parse the json response and then use json object to get the corresponding value.
username = (ConvertFrom-Json -InputObject (Get-SECSecretValue -SecretId secret-arn ).SecretString).username