https://github.com/msoedov/secrecy
Instruments secrets from AWS Parameter Store
https://github.com/msoedov/secrecy
aws golang secret-management security
Last synced: 2 months ago
JSON representation
Instruments secrets from AWS Parameter Store
- Host: GitHub
- URL: https://github.com/msoedov/secrecy
- Owner: msoedov
- Created: 2019-06-21T12:52:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-12T08:21:55.000Z (almost 7 years ago)
- Last Synced: 2025-03-04T07:15:15.563Z (over 1 year ago)
- Topics: aws, golang, secret-management, security
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Secrecy
Ultralight AWS Parameter Store variables instrumentation on AWS instances
### Features
Written in simple Go
No installation necessary - binary is provided
Intuitive and easy to use
Efficient batching
## Usage
```shell
export FOO=ssm:SSM_PARAM
`secrecy`
echo $FOO
SSM_VALUE:)
```
How this works:
```shell
export FOO=ssm:SSM_PARAM
secrecy
# stdout
export FOO=SSM_VALUE:)
```
## Install
```shell
go get -u github.com/msoedov/secrecy
```
## Configuration
```shell
# Optional as per aws/aws-sdk-go#configuring-credentials
AWS_SDK_LOAD_CONFIG=1
```
### Docker instrumentation
TBD