Getting Started
Run a full demo of secretsfoundry
Install Secretsfoundry
Create a .env
file in your repository
> secretsfoundry run
The output should be something like:
{ "SIMPLE": "simple", "VARIABLE": "simple" }
Now lets add a parameter to AWS Parameter Store using:
aws ssm put-parameter --name /staging/example/server/GOOGLE_API_KEY --value google_api_key --type "String"
Add the variable to .env:
secretsfoundry run
The output should be:
You can similarily store your variables in AWS S3, AWS Secrets Manager and Hashicorp Vault. To use them as environment variables, you can simple use:
Last updated