https://github.com/railsware/cat-aws-ssm-param
https://github.com/railsware/cat-aws-ssm-param
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/railsware/cat-aws-ssm-param
- Owner: railsware
- License: mit
- Created: 2020-05-27T14:54:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-22T16:50:28.000Z (about 4 years ago)
- Last Synced: 2025-10-12T10:32:09.347Z (3 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 1
- Watchers: 26
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cat-aws-ssm-param
Like `cat`, but for AWS Systems Manager Parameter Store!
Writes the decrypted value of a parameter to standard output.
- No dependencies
- Single binary to download
- Uses AWS credentials from the environment
## Installation
Download `cat-aws-ssm-param`. That's it!
```sh
curl -L https://github.com/railsware/cat-aws-ssm-param/releases/download/v1.0.0/cat-aws-ssm-param.linux.gz | gzip -cd >./cat-aws-ssm-param
```
## Build for yourself. Question authority
1. Clone this repo
2. Install Go
3. Install UPX: `brew install --build-from-source upx`
4. `make build-linux` (or `build-macos`)
## Usage
```bash
./cat-aws-ssm-param /myapp/nginx_ssl_certificate >/etc/nginx/ssl.crt
```
## Use cases
Package into Docker with programs that can't access the Parameter Store directly - like nginx.
---
(c) Railsware, Leonid Shevtsov 2020