{"id":39076684,"url":"https://github.com/chanyeinthaw/ssme","last_synced_at":"2026-01-17T18:27:11.807Z","repository":{"id":238299948,"uuid":"796277965","full_name":"chanyeinthaw/ssme","owner":"chanyeinthaw","description":"SSM ParameterStore Editor","archived":false,"fork":false,"pushed_at":"2024-05-14T14:28:14.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T08:17:56.806Z","etag":null,"topics":["aws-ssm","aws-ssm-parameter-store","cli","parameter-store"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/ssme","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/chanyeinthaw.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2024-05-05T13:31:36.000Z","updated_at":"2024-05-14T14:28:17.000Z","dependencies_parsed_at":"2024-05-07T03:26:49.629Z","dependency_job_id":"6c27777e-b953-4fed-90a5-9ab63bb272da","html_url":"https://github.com/chanyeinthaw/ssme","commit_stats":null,"previous_names":["chanyeinthaw/ssm-env","chanyeinthaw/ssm-edit","chanyeinthaw/ssme"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/chanyeinthaw/ssme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanyeinthaw%2Fssme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanyeinthaw%2Fssme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanyeinthaw%2Fssme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanyeinthaw%2Fssme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chanyeinthaw","download_url":"https://codeload.github.com/chanyeinthaw/ssme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanyeinthaw%2Fssme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28515482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T17:57:59.192Z","status":"ssl_error","status_checked_at":"2026-01-17T17:57:52.527Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-ssm","aws-ssm-parameter-store","cli","parameter-store"],"created_at":"2026-01-17T18:27:11.109Z","updated_at":"2026-01-17T18:27:11.793Z","avatar_url":"https://github.com/chanyeinthaw.png","language":"Go","readme":"# ssme\n\nAWS SSM ParameterStore UI **SUCKS**! I made this to ease my pain. \n\n# Configuration\n\nYou need to configure aws credentials @ `~/.aws/credentials` or set `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` in env vars.\n\n## Installation\n\n```bash\nbun add -g ssme\n-- or -- \nnpm install -g ssme\n```\n\n## Usage \n\n```bash\nNAME:\n   ssme - AWS ParameterStore Editor\n\nUSAGE:\n   ssme [global options] command [command options]\n\nVERSION:\n   dev\n\nCOMMANDS:\n   ls, list   List parameters\n   cat        Display parameters with values\n   vim, edit  Edit parameters with vim\n   help, h    Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --profile value, -p value      aws profile\n   --region value, -r value       aws region\n   --prefix value, -f value       prefix filter\n   --max-results value, -m value  max results (default: 10)\n   --help, -h                     show help\n   --version, -v                  print the version\n```\n\n### Commands\n\n- `ssme ls`\n- `ssme cat`\n- `ssme vim`\n\n### `ssme ls`\n\nList parameters from parameter store.\n\nUsage\n```\n$ ssme ls \n```\n\nExample\n```\n$ ssme ls -r ap-southeast-1\nString           /cdk-bootstrap/xxx/version\nSecureString     /acme/db\n```\n\n### `ssme cat`\n\nRead parameters from parameter store.\n\nUsage\n```\n$ ssme cat\n```\n\nExample\n```\n$ ssme -r ap-southeast-1 cat\n/cdk-bootstrap/xxx/version=1.2.3\nsec:/acme/db=mysql://root:password@db.acme.com/acme?sslaccept=strict\u0026ssl={rejectUnauthorized:true}\n```\n\n\u003e SecureString parameters are indicated by `sec:` prefix\n\n### `ssme vim`\n\nEdit parameters from parameter store in vim\n\nUsage\n```\n$ ssme -r ap-southeast-1 vim\n```\n\nExample\n```\n$ ssme -r ap-southeast-1 vim\n\n-- vim -- \n/cdk-bootstrap/xxx/version=1.2.3\nsec:/acme/db=mysql://root:password@db.acme.com/acme?sslaccept=strict\u0026ssl={rejectUnauthorized:true}\n-- vim --\n\nOriginal ---\n/cdk-bootstrap/xxx/version=1.2.3\nsec:/acme/db=mysql://root:password@db.acme.com/acme?sslaccept=strict\u0026ssl={rejectUnauthorized:true}\nUpdated ---\n/cdk-bootstrap/xxx/version=1.2.3\n/acme/db=mysql://root:password@db.acme.com/acme?sslaccept=strict\u0026ssl={rejectUnauthorized:true}\n\nDo you want to apply these changes? (y/n)\n```\n\n\u003e You can change the parameter type by removing or adding `sec:` prefix\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanyeinthaw%2Fssme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchanyeinthaw%2Fssme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanyeinthaw%2Fssme/lists"}