🔧 Update default max cache time for secret value retrieval to 30 days
This commit is contained in:
@@ -1675,7 +1675,7 @@ export async function getSecretValue(
|
|||||||
{
|
{
|
||||||
tryRefresh: options?.tryRefresh,
|
tryRefresh: options?.tryRefresh,
|
||||||
defaultCacheTimeSecs: options?.defaultCacheTimeSecs ?? 3600,
|
defaultCacheTimeSecs: options?.defaultCacheTimeSecs ?? 3600,
|
||||||
maxCacheTimeSecs: options?.maxCacheTimeSecs ?? 3600 * 24,
|
maxCacheTimeSecs: options?.maxCacheTimeSecs ?? 3600 * 24 * 30,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user