Home > OS >  Fetch specific Secret value for a specific key in AWS Secrets Manager via Powershell
Fetch specific Secret value for a specific key in AWS Secrets Manager via Powershell

Time:01-03

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
  • Related