{"id":43120229,"url":"https://github.com/chroju/parade","last_synced_at":"2026-01-31T19:35:25.469Z","repository":{"id":36981736,"uuid":"213917413","full_name":"chroju/parade","owner":"chroju","description":"Parade is a simple CLI tool for AWS SSM parameter store. Easy to read and write key values in your parameter store.","archived":false,"fork":false,"pushed_at":"2023-03-03T09:57:08.000Z","size":100,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T11:25:11.640Z","etag":null,"topics":["aws","cli","go","parameter-store","ssm"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chroju.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-09T12:49:51.000Z","updated_at":"2023-02-20T09:30:07.000Z","dependencies_parsed_at":"2024-06-20T21:51:07.466Z","dependency_job_id":"8d246cb4-02fa-4695-8bc8-ed918b866b2c","html_url":"https://github.com/chroju/parade","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/chroju/parade","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fparade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fparade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fparade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fparade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chroju","download_url":"https://codeload.github.com/chroju/parade/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chroju%2Fparade/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28951541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cli","go","parameter-store","ssm"],"created_at":"2026-01-31T19:35:24.654Z","updated_at":"2026-01-31T19:35:25.456Z","avatar_url":"https://github.com/chroju.png","language":"Go","readme":"Parade\n======\n\n[![release badge](https://img.shields.io/github/v/release/chroju/parade.svg)](https://github.com/chroju/parade/releases)\n[![test badge](https://github.com/chroju/parade/workflows/test/badge.svg)](https://github.com/chroju/parade/actions?workflow=test)\n[![Coverage Status](https://coveralls.io/repos/github/chroju/parade/badge.svg?branch=main)](https://coveralls.io/github/chroju/parade?branch=main)\n\n\nParade is a simple CLI tool for AWS SSM parameter store. Easy to read and write key values in your parameter store.\n\nInstall\n-------\n\n### Homebrew\n\n```bash\nbrew install chroju/tap/parade\n```\n\n### Download binary\n\nDownload the latest binary from [here](https://github.com/chroju/parade/releases) and place it in the some directory specified by `$PATH`.\n\n### go get\n\nIf you have set up Go environment, you can also install `parade` with `go get` command.\n\n```bash\ngo get github.com/chroju/parade\n```\n\nAuthentication\n--------------\n\nParade requires your AWS IAM user authentication. The same authentication method as [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html) is available. Tools like [aws-vault](https://github.com/99designs/aws-vault) can be used as well.\n\n```bash\n# with command line options\n$ parade --profile YOUR_PROFILE\n\n# with aws-vault\n$ aws-vault exec YOUR_PROFILE -- parade\n```\n\nParade uses the following AWS API. If you are dealing with SecureString, you will also need permission to access the kms key.\n\n* ssm:DeleteParameter\n* ssm:DescribeParameters\n* ssm:GetParameter\n* ssm:PutParameter\n\nUsage\n-----\n\nThere are simple 4 sub commands. It is similar to redis-cli. \n\n### keys\n\nSearch keys and display their types together.\n\n`keys` command supports exact match, forward match, and partial match. It usually searches for exact matches.\n\n```bash\n$ parade /service1/dev/key1\n/service1/dev/key1  Type: String\n```\n\nUse `*` as a postfix, the search will be done as a forward match.  Furthermore, also use `*` as a prefix, it becomes a partial match. You can't use `*` as a prefix only.\n\n```bash\n$ parade keys /service1*\n/service1/dev/key1   Type: String\n/service1/dev/key2   Type: String\n/service1/prod/key3  Type: SecureString\n\n$ parade keys *prod*\n/service1/prod/key3  Type: SecureString\n```\n\nIf no argument is given, all keys will be retrieved.\n\n```bash\n$ parade keys\n/service1/dev/key1   Type: String\n/service1/dev/key2   Type: String\n/service1/prod/key3  Type: SecureString\n...\n```\n\n### get\n\nDisplay the value of the specified key.\n\n```bash\n$ parade get /service1/dev/key1\nvalue1\n```\n\nYou can also do a partial search using `*` as well as the `keys` command.\n\n```bash\n$ parade get /service1*\n/service1/dev/key1   value1\n/service1/dev/key2   value2\n/service1/prod/key3  value3\n```\n\nThe `--decrypt` or `-d` option is required to decrypt SecureString.\n\n```bash\n$ parade get /service1/dev/password\n(encrypted)\n\n$ parade get /service1/dev/password -d\n1234password\n```\n\n### set\n\nSet new key and value.\n\n```bash\n$ parade set /service1/dev/key4 value4\n```\n\nIf the specified key already exists, you can choose to overwrite it. Use `--force` flag if you want to force overwriting.\n\n```bash\n$ parade set /service1/dev/key4 value5\nWARN: `/service1/dev/key4` already exists.\nOverwrite `/service1/dev/key4` (value: value4) ? (Y/n)\n\n$ parade set /service1/dev/key4 value5 --force\n```\n\nThe value is stored as `String` type by default. It also supports `SecureString` with the `--encrypt` flag. If you don't specify a key ID with `--kms-key-id` flag, uses the default key associated with your AWS account.\n\n`StringList` type is not supported.\n\n\n### del\n\nDelete key and value. Use `--force` flag if you want to skip the confirmation prompt.\n\n```bash\n$ parade del /service1/dev/key4\nDelete `/service1/dev/key4` (value: value5) ? (Y/n)\n\n$ parade del /service1/dev/key4 --force\n```\n\nLICENSE\n----\n\n[MIT](https://github.com/chroju/parade/LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchroju%2Fparade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchroju%2Fparade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchroju%2Fparade/lists"}