Skip to content

Commit

Permalink
fix: qs
Browse files Browse the repository at this point in the history
  • Loading branch information
willfarrell committed Jan 3, 2025
1 parent 51ef02c commit f8c1f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/parameters-secrets-extension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ const defaults = {

const types = {
systemsmanager: {
path: '/systemsmanager/parameters/get/?name=',
path: '/systemsmanager/parameters/get/?withDecryption=true&name=',
response: (res) => jsonSafeParse(res.Parameter?.Value)
},
secretsmanager: {
path: '/secretsmanager/get?withDecryption=true&secretId=',
path: '/secretsmanager/get?secretId=',
response: (res) => jsonSafeParse(res.SecretString)
}
}
Expand Down

0 comments on commit f8c1f66

Please sign in to comment.