Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yumafuu/denosm
CLI tool for AWS SSM Parameter Store
https://github.com/yumafuu/denosm
deno ssm
Last synced: 3 months ago
JSON representation
CLI tool for AWS SSM Parameter Store
- Host: GitHub
- URL: https://github.com/yumafuu/denosm
- Owner: yumafuu
- Created: 2023-12-20T09:51:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-21T06:56:45.000Z (about 1 year ago)
- Last Synced: 2024-10-14T02:24:47.223Z (4 months ago)
- Topics: deno, ssm
- Language: TypeScript
- Homepage: https://deno.land/x/denosm
- Size: 39.1 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🦖 denosm
![Release](https://github.com/YumaFuu/denosm/actions/workflows/release.yaml/badge.svg)
Fuzzy Finder for
[AWS SSM Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html)using [fzf-for-js](https://github.com/ajitid/fzf-for-js?tab=readme-ov-file)
which uses [fzf](https://github.com/junegunn/fzf)'s algorithm## Usage
![usage](https://github.com/YumaFuu/denosm/assets/32477095/03f42c87-0307-4476-81c1-c27484ed29bf)
```bash
# fuzzy find
$ sm# list all parameters
$ sm list
/path/to/secret_key
/path/to/username
/path/to/supersecretkey# get value by name
$ sm get "/path/to/username"
its-me# set AWS_PROFILE
$ sm list -p your-aws-profile# Create or Update value
$ sm put
# or
$ sm put -n name -v value -t String
```## Install
```bash
# Deno
$ deno install -A https://deno.land/x/denosm/index.ts -n sm -f# Homebrew
$ brew install YumaFuu/tap/sm
```## Requirements
- [aws-cli](https://aws.amazon.com/cli/)