UNPKG

cdk-rds-sql

Version:

A CDK construct that allows creating roles and databases an on Aurora Serverless Postgresql cluster.

9 lines (8 loc) 327 B
import { createHash } from "crypto"; import { join } from "path"; import { getHomeDir } from "./getHomeDir"; export const getSSOTokenFilepath = (id) => { const hasher = createHash("sha1"); const cacheName = hasher.update(id).digest("hex"); return join(getHomeDir(), ".aws", "sso", "cache", `${cacheName}.json`); };