https://github.com/yumafuu/denosm
CLI tool for AWS SSM Parameter Store
https://github.com/yumafuu/denosm
deno ssm
Last synced: 10 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-21T06:56:45.000Z (over 2 years ago)
- Last Synced: 2025-08-04T11:45:12.626Z (11 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

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

```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/)