@1mill/sops 中文文档教程

发布于 3年前 浏览 24 项目主页 更新于 3年前

@1mill/sops

npm install @1mill/sops
const { Sops } = require('@1mill/sops')

const sops = new Sops({})

exports.handler = async (cloudevent, ctx) => {
  ctx.callbackWaitsForEmptyEventLoop = false

  const allMySecrets = await sops.decrypt()
  const aSingleSecret = await sops.decrypt('my secret name')

  return {
    allMySecrets,
    aSingleSecret,
  }
}
RequiredDefaultNotes
accessKeyIdyesprocess.env.MILLSOPSAWSACCESSKEY_ID
endpointprocess.env.MILLSOPSAWS_ENDPOINTGood for local development environment when using Localstack (or other AWS simulators)
fileprocess.env.MILLSOPSFILE || process.env.NODE_ENV === 'production' ? 'prod.secrets.sops.json' : 'dev.secrets.sops.json'
regionyesprocess.env.MILLSOPSAWS_REGION
secretAccessKeyyesprocess.env.MILLSOPSAWSSECRETACCESS_KEY

@1mill/sops

npm install @1mill/sops
const { Sops } = require('@1mill/sops')

const sops = new Sops({})

exports.handler = async (cloudevent, ctx) => {
  ctx.callbackWaitsForEmptyEventLoop = false

  const allMySecrets = await sops.decrypt()
  const aSingleSecret = await sops.decrypt('my secret name')

  return {
    allMySecrets,
    aSingleSecret,
  }
}
RequiredDefaultNotes
accessKeyIdyesprocess.env.MILLSOPSAWSACCESSKEY_ID
endpointprocess.env.MILLSOPSAWS_ENDPOINTGood for local development environment when using Localstack (or other AWS simulators)
fileprocess.env.MILLSOPSFILE || process.env.NODE_ENV === 'production' ? 'prod.secrets.sops.json' : 'dev.secrets.sops.json'
regionyesprocess.env.MILLSOPSAWS_REGION
secretAccessKeyyesprocess.env.MILLSOPSAWSSECRETACCESS_KEY
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文