mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
make var readable
This commit is contained in:
@@ -479,10 +479,10 @@ const syncSecretsAWSParameterStore = async ({
|
||||
.promise();
|
||||
|
||||
if (parameters.Parameters) {
|
||||
parameters.Parameters.forEach((sec) => {
|
||||
if (sec.Name) {
|
||||
const secKey = sec.Name.substring((integration.path as string).length);
|
||||
awsParameterStoreSecretsObj[secKey] = sec;
|
||||
parameters.Parameters.forEach((parameter) => {
|
||||
if (parameter.Name) {
|
||||
const secKey = parameter.Name.substring((integration.path as string).length);
|
||||
awsParameterStoreSecretsObj[secKey] = parameter;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user