
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
serverless-export-outputs
Advanced tools
A Serverless plugin for exporting AWS stack outputs to a file.
A Serverless plugin for exporting AWS stack outputs to a file.
By default, this plugin exports all stack outputs to a toml formatted .env file in the root of the project. You can override these in step 4. You can also turn on Create React App prefixing in step 5.
Add dependency to package.json:
npm add -D serverless-export-outputs
or
yarn add -D serverless-export-outputs
Add the plugin to serverless.yml file:
plugins:
- serverless-export-outputs
Choose which outputs get exported (optional):
custom:
exportOutputs: # if not provided, all outputs are exported
- OutputKeyName
- AnotherOutputKeyName
- CustomOutput: value # add custom key/value to exports
Outputs:
OutputKeyName:
Value: Lorem ipsum
AnotherOutputKeyName:
Value: Lorem ipsum
ThisOutputWontExport:
Value: Lorem ipsum
Override defaults:
custom:
exportOutputs:
include: # if not provided, all outputs are exported
- OutputKeyName
- AnotherOutputKeyName
- CustomOutput: value # add custom key/value to exports
handler: scripts/env.js # script to process outputs
output:
file: ./.env # file path and name relative to root
format: toml # toml, yaml/yml, json
Handler at scripts/env.js:
function handler(outputs, serverless, options) {
console.log({ outputs });
return outputs;
}
module.exports = handler;
ReactApp prefixing:
Format all keys as OutputKeyName → REACT_APP_OUTPUT_KEY_NAME to have Create React App pick them up as process.env variables.
Note: This will be ignored if a handler is provided like in step 4.
custom:
exportOutputs:
reactapp: true
include: # if not provided, all outputs are exported
- OutputKeyName
- AnotherOutputKeyName
- CustomOutput: value # add custom key/value to exports
FAQs
A Serverless plugin for exporting AWS stack outputs to a file.
We found that serverless-export-outputs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.