UNPKG

cdk-encrypted-secret

Version:

CDK Construct that creates an AWS Secret Manager Secret and sets the value from an encrypted Ciphertext.

10 lines (9 loc) 313 B
import { promises as fsPromises } from "fs"; const { readFile } = fsPromises; const filePromisesHash = {}; export const slurpFile = (path, options) => { if (!filePromisesHash[path] || options?.ignoreCache) { filePromisesHash[path] = readFile(path, "utf8"); } return filePromisesHash[path]; };