https://github.com/mikebild/gatsby-plugin-aws-parameter-store-environment
AWS Paramter-Store values to local Environment variables at build time
https://github.com/mikebild/gatsby-plugin-aws-parameter-store-environment
Last synced: 5 months ago
JSON representation
AWS Paramter-Store values to local Environment variables at build time
- Host: GitHub
- URL: https://github.com/mikebild/gatsby-plugin-aws-parameter-store-environment
- Owner: MikeBild
- Created: 2019-03-05T18:51:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T00:58:22.000Z (over 3 years ago)
- Last Synced: 2025-10-09T01:33:07.196Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gatsby AWS Parameter Store Environment Plugin
> Gatsby plugin to map AWS parameter store paramters to environment variables at build time.
## Conceptual thoughts
- Loads all parameters from [AWS System Manager / Parameter Store](https://aws.amazon.com/de/systems-manager/features/)
- Apply AWS Parameter-Store parameters to local snake-case environment variables
- `.env.*` overrides Parameter-Store environment variables
## Setup
- `npm install gatsby-plugin-aws-parameter-store-environment --save-dev`
- `yarn add gatsby-plugin-aws-parameter-store-environment --dev`
## How to use?
**`gatsby-config.js`**
Use `AWS_SDK_LOAD_CONFIG=1` or configure AWS credentials via plugin options.
```javascript
{
resolve: 'gatsby-plugin-aws-parameter-store-environment',
options: {
aws: {
region: 'eu-central-1'
}
},
}
```